initial commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user