Files

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