Files

8 lines
179 B
C#
Raw Permalink 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; }
}