namespace DCGEngine.Database.Interfaces; public interface ITimeTrackedEntity { /// /// The this entity was first added to the database. /// public DateTime? DateCreated { get; set; } /// /// The this entity was last updated. /// public DateTime? DateUpdated { get; set; } }