summaryrefslogtreecommitdiffstats
path: root/api/WhatApi/Tables/IAuditableEntity.cs
blob: a11e7f21abc5eb5b33188c4b191c2cf77f21174b (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace WhatApi.Tables;

public interface IAuditableEntity
{
    public DateTimeOffset CreatedAtUtc { get; set; }
    public DateTimeOffset? UpdatedAtUtc { get; set; }
    public Guid CreatedBy { get; set; }
    public Guid? UpdatedBy { get; set; }
}