10 lines
223 B
C#
10 lines
223 B
C#
namespace Manager.Data.Entities.Audit;
|
|
|
|
/// <summary>
|
|
/// Specifies to ignore the properties in the entity to not audit.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class NoAuditAttribute : Attribute
|
|
{
|
|
}
|