You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
367 B
12 lines
367 B
namespace Connected.Security
|
|
{
|
|
public static class SecurityClaims
|
|
{
|
|
public const string SecurityDelete = "Security Delete";
|
|
public const string SecurityAdd = "Security Add";
|
|
public const string SecurityModify = "Security Modify";
|
|
public const string SecurityModifySelf = "Security Modify Self";
|
|
public const string SecurityRead = "Security Read";
|
|
}
|
|
}
|