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 219B

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