using Prefab.Data; namespace Prefab.Domain.Common; /// /// Interface representation of an entity's status. /// public interface IStatus { /// /// Gets or sets the current status of the entity. /// public AuditStatus AuditStatus { get; } }