using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EnVisage.Models.Entities { /// /// Entity with Create and Update timestamp attributes /// /// SA. ENV-1085 public interface ITimestampEntity { void SetUpdatedTimestamp(); void SetCreatedTimestamp(); } }