Files

10 lines
206 B
C#
Raw Permalink Normal View History

2026-09-20 16:21:15 +07:00
namespace mws.backend.dotnet.application.Audit;
public interface IAuditableRequest
{
string Action { get; }
string EntityType { get; }
Guid? EntityId => null;
string? EntityName => null;
}