BotSharp/src/Infrastructure/BotSharp.Abstraction/Users/Enums/UserConstant.cs

11 lines
209 B
C#
Raw Normal View History

2024-10-31 19:36:26 +00:00
namespace BotSharp.Abstraction.Users.Enums;
public static class UserConstant
{
public static IEnumerable<string> AdminRoles = new List<string>
{
UserRole.Admin,
UserRole.Root
};
}