You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuStatus.cs 258B

123456789101112131415
  1. namespace Luticate2.Utils.Dbo.Result
  2. {
  3. public enum LuStatus
  4. {
  5. Success,
  6. InputError,
  7. DbError,
  8. FsError,
  9. BackendError,
  10. PermissionError,
  11. LoginError,
  12. NotFound,
  13. InternalError
  14. }
  15. }