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

8 lines
179 B
C#
Raw Normal View History

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