using System; using System.Collections.Generic; using System.Text; namespace InABox.Core { public interface IDocument : IEntity { public string FileName { get; set; } public DateTime TimeStamp { get; set; } } }