12 lines
308 B
C#
12 lines
308 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 Delete = "Delete";
|
||
public const string Utilize = "Utilize";
|
||
}
|
||
}
|