namespace Prefab.Domain.Common; /// /// Describes audit metadata captured on entities. /// public interface IAudit : ICreated { /// /// Gets the identifier of the user that last updated the entity. /// Guid LastModifiedBy { get; } /// /// Gets when the entity was last updated. /// DateTimeOffset LastModifiedOn { get; } }