Files
mws.backend.dotnet/application/Audit/IAuditContext.cs
T
2026-09-20 16:21:15 +07:00

8 lines
154 B
C#

namespace mws.backend.dotnet.application.Audit;
public interface IAuditContext
{
Guid? EntityId { get; set; }
string? EntityName { get; set; }
}