15 lines
527 B
C#
15 lines
527 B
C#
namespace MoonlightServers.Shared;
|
|
|
|
public static class Permissions
|
|
{
|
|
public const string Prefix = "Permissions:Servers.";
|
|
public static class Nodes
|
|
{
|
|
private const string Section = "Nodes";
|
|
|
|
public const string View = $"{Prefix}{Section}.{nameof(View)}";
|
|
public const string Edit = $"{Prefix}{Section}.{nameof(Edit)}";
|
|
public const string Create = $"{Prefix}{Section}.{nameof(Create)}";
|
|
public const string Delete = $"{Prefix}{Section}.{nameof(Delete)}";
|
|
}
|
|
} |