10 lines
206 B
C#
10 lines
206 B
C#
namespace mws.backend.dotnet.application.Audit;
|
|
|
|
public interface IAuditableRequest
|
|
{
|
|
string Action { get; }
|
|
string EntityType { get; }
|
|
Guid? EntityId => null;
|
|
string? EntityName => null;
|
|
}
|