Table of Contents

Interface IAuditableEntity

Namespace
MADE.Data.EFCore
Assembly
MADE.Data.EFCore.dll

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

string

UpdatedBy

Gets or sets the identifier of the user who last updated the entity.

string? UpdatedBy { get; set; }

Property Value

string