Files
YouTube-Manager/Manager.Data/Entities/Audit/AuditableAttribute.cs
2025-09-10 23:49:41 +02:00

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
{
}