Files
mws.backend.dotnet/application/Audit/IAuditContext.cs
T

8 lines
154 B
C#
Raw Normal View History

2026-09-20 16:21:15 +07:00
namespace mws.backend.dotnet.application.Audit;
public interface IAuditContext
{
Guid? EntityId { get; set; }
string? EntityName { get; set; }
}