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.
16 lines
412 B
16 lines
412 B
3 years ago
|
namespace Sanhe.Abp.Auditing.Features
|
||
|
{
|
||
|
public static class AuditingFeatureNames
|
||
|
{
|
||
|
public const string GroupName = "AbpAuditing";
|
||
|
public class Logging
|
||
|
{
|
||
|
public const string Default = GroupName + ".Logging";
|
||
|
|
||
|
public const string AuditLog = Default + ".AuditLog";
|
||
|
|
||
|
public const string SecurityLog = Default + ".SecurityLog";
|
||
|
}
|
||
|
}
|
||
|
}
|