IwbLanguageMessage.cs 1.4 KB

1234567891011121314151617181920212223242526
  1. namespace WeApp.Configuration
  2. {
  3. public class IwbLanguageMessage
  4. {
  5. public const string PasswordError = "PasswordError";
  6. public const string InvalidUserType = "InvalidUserType";
  7. public const string NoPermissionUpdateUser = "NoPermissionUpdateUser";
  8. public const string NoPermissionUpdateUserType = "NoPermissionUpdateUserType";
  9. public const string CanNotDeleteUser = "CanNotDeleteUser";
  10. public const string CanNotUpdateAccountType = "CanNotUpdateAccountType";
  11. public const string CanNotUpdateAdminPermission = "CanNotUpdateAdminPermission";
  12. public const string NoPermissionUpdateRoleType = "NoPermissionUpdateRoleType";
  13. public const string CanNotDeleteRole = "CanNotDeleteRole";
  14. public const string NoPermissionOperation = "NoPermissionOperation";
  15. public const string UserSessionTimeout = "UserSessionTimeout";
  16. public const string KeyExistMessage = "KeyExistMessage";
  17. public const string KeyExistMessageFormatter = "KeyExistMessageFormatter";
  18. public const string KeyNotExistMessage = "KeyNotExistMessage";
  19. public const string KeyNotExistMessageFormatter = "KeyNotExistMessageFormatter";
  20. public const string NoImageInfo = "NoImageInfo";
  21. public const string CanNotDelete = "CanNotDeleteRecord";
  22. public const string NotificationNotBelong = "ThisNotificationDoesntBelongToYou";
  23. }
  24. }