using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public interface IDataEntryInstance { DateTime DataEntered { get; set; } } }