Table of Contents

Interface ITrackDeleted

Namespace
Arbiter.CommandQuery.Definitions
Assembly
Arbiter.CommandQuery.dll

Defines a contract for entities that support soft deletion. Implementing this interface allows an entity to be marked as deleted without being physically removed from storage.

public interface ITrackDeleted

Properties

IsDeleted

Gets or sets a value indicating whether this entity instance is considered deleted (soft delete).

bool IsDeleted { get; set; }

Property Value

bool

true if this instance is marked as deleted; otherwise, false.