AuditableEntity
Class abstractpublic
Base class for entities that require audit tracking.
Definition
Section titled Definitionpublic abstract class AuditableEntityRemarks
Section titled RemarksAll entities inheriting from AuditableEntity automatically receive a unique identifier and timestamp fields for creation and last modification. The
CreatedBy and UpdatedBy properties record the identity of the user who performed the respective action.Properties5
Section titled PropertiesCreatedAt Section titled CreatedAt DateTimeOffset DateTimeOffset AuditableEntity.CreatedAtGets or sets the UTC date and time when the entity was created.
string? string? AuditableEntity.CreatedByGets or sets the identifier of the user who created the entity.
UpdatedAt Section titled UpdatedAt DateTimeOffset DateTimeOffset AuditableEntity.UpdatedAtGets or sets the UTC date and time when the entity was last updated.
string? string? AuditableEntity.UpdatedByGets or sets the identifier of the user who last updated the entity.