ErrorType.cs 214 B

12345678910111213
  1. namespace SharedKernel.Results;
  2. public enum ErrorType
  3. {
  4. Failure = 0,
  5. Validation = 1,
  6. Problem = 2,
  7. Unauthorized = 3,
  8. NotFound = 4,
  9. Forbidden = 5,
  10. Conflict = 6,
  11. MethodNotAllowed = 7
  12. }