AyCode.Core/AyCode.Interfaces/Entities/IAcSoftRemoveEntity.cs

9 lines
236 B
C#

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; }
}