namespace AyCode.Interfaces.Entities;
public interface IAcSoftRemoveEntity : IEntity
{
/// <summary>
/// Gets or sets a value indicating whether the entity has been deleted
/// </summary>
bool Deleted { get; set; }
}