Table of Contents

Interface IAuditableEntity<TKey>

Namespace
Axolotl.EFCore.Interfaces
Assembly
Axolotl.EFCore.dll
public interface IAuditableEntity<TKey> : IAuditableEntity

Type Parameters

TKey
Extension Methods

Properties

CreatedAt

DateTimeOffset CreatedAt { get; set; }

Property Value

DateTimeOffset

CreatedBy

TKey? CreatedBy { get; set; }

Property Value

TKey

DeletedAt

DateTimeOffset? DeletedAt { get; set; }

Property Value

DateTimeOffset?

DeletedBy

TKey? DeletedBy { get; set; }

Property Value

TKey

UpdatedAt

DateTimeOffset? UpdatedAt { get; set; }

Property Value

DateTimeOffset?

UpdatedBy

TKey? UpdatedBy { get; set; }

Property Value

TKey