mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-14 18:54:32 +00:00
9 lines
282 B
C#
9 lines
282 B
C#
namespace Oqtane.Shared {
|
|
public class RoleNames {
|
|
public const string Everyone = "All Users";
|
|
public const string Host = "Host Users";
|
|
public const string Admin = "Administrators";
|
|
public const string Registered = "Registered Users";
|
|
}
|
|
}
|