Interface IAuditableEntity
Defines an interface for entities that track who created and last updated them.
public interface IAuditableEntity
- Extension Methods
Properties
CreatedBy
Gets or sets the identifier of the user who created the entity.
string? CreatedBy { get; set; }
Property Value
UpdatedBy
Gets or sets the identifier of the user who last updated the entity.
string? UpdatedBy { get; set; }