9 lines
268 B
C#
9 lines
268 B
C#
namespace Manager.Data.Entities.Audit;
|
|
|
|
/// <summary>
|
|
/// Make all properties in the entity audible, if they are changed this will be stored as a history in the db.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class AuditableAttribute : Attribute
|
|
{
|
|
} |