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.
24 lines
638 B
24 lines
638 B
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"; |
|
} |
|
|
|
public class Logging |
|
{ |
|
public const string Default = GroupName + ".Logging"; |
|
} |
|
} |
|
}
|
|
|