12 lines
262 B
C#
12 lines
262 B
C#
namespace Oqtane.Shared
|
||
{
|
||
public class PermissionNames
|
||
{
|
||
public const string Browse = "Browse";
|
||
public const string View = "View";
|
||
public const string Edit = "Edit";
|
||
public const string Utilize = "Utilize";
|
||
|
||
}
|
||
}
|