mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 18:44:23 +00:00
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";
|
||
|
||
}
|
||
}
|