10 lines
246 B
C#
10 lines
246 B
C#
namespace Domain.Common;
|
|
|
|
public interface IHasAudit
|
|
{
|
|
public DateTime? CreatedAtUtc { get; set; }
|
|
public string? CreatedById { get; set; }
|
|
public DateTime? UpdatedAtUtc { get; set; }
|
|
public string? UpdatedById { get; set; }
|
|
}
|