11 lines
388 B
C#
11 lines
388 B
C#
namespace ROLAC.API.Entities.Base;
|
|
|
|
/// <summary>
|
|
/// Opt-in marker: entities implementing this are diffed by <c>AuditLogInterceptor</c>, which
|
|
/// writes a before→after AuditLog row on every Create/Update/Delete. Applied only to business
|
|
/// entities the church cares about — not to internal/high-churn rows (RefreshToken, log tables).
|
|
/// </summary>
|
|
public interface IAuditable
|
|
{
|
|
}
|