using System; namespace Abp.Domain.Entities.Auditing { /// /// An entity can implement this interface if of this entity must be stored. /// is automatically set when deleting . /// public interface IHasDeletionTime : ISoftDelete { /// /// Deletion time of this entity. /// DateTime? DeletionTime { get; set; } } }