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.
19 lines
521 B
19 lines
521 B
3 years ago
|
namespace Sanhe.Abp.Auditing.Permissions
|
||
|
{
|
||
|
public class AuditingPermissionNames
|
||
|
{
|
||
|
public const string GroupName = "AbpAuditing";
|
||
|
public class AuditLog
|
||
|
{
|
||
|
public const string Default = GroupName + ".AuditLog";
|
||
|
public const string Delete = Default + ".Delete";
|
||
|
}
|
||
|
|
||
|
public class SecurityLog
|
||
|
{
|
||
|
public const string Default = GroupName + ".SecurityLog";
|
||
|
public const string Delete = Default + ".Delete";
|
||
|
}
|
||
|
}
|
||
|
}
|