using System; namespace Abp.Domain.Entities.Auditing { /// /// An entity can implement this interface if of this entity must be stored. /// is automatically set when saving to database. /// public interface IHasCreationTime { /// /// Creation time of this entity. /// DateTime CreationTime { get; set; } } }