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.

LuPermissions.cs 356B

12345678910111213
  1. namespace Luticate2.Auth.Dbo.Permissions
  2. {
  3. public static class LuPermissions
  4. {
  5. public const string LuGroupsRead = "LU_GROUPS_READ";
  6. public const string LuGroupsWrite = "LU_GROUPS_WRITE";
  7. public const string LuUsersRead = "LU_USERS_READ";
  8. public const string LuUsersWrite = "LU_USERS_WRITE";
  9. }
  10. }