namespace zero.Models; /// /// Entities decorated with this interface are always set to IsActive=true /// public interface IAlwaysActive { /// /// Whether the entity is visible in the frontend /// bool IsActive { get; set; } }