using System; namespace Abp.Domain.Entities.Auditing { /// /// An entity can implement this interface if of this entity must be stored. /// is automatically set when updating . /// public interface IHasModificationTime { /// /// The last modified time for this entity. /// DateTime? LastModificationTime { get; set; } } }