using System; using System.Collections.Generic; using System.Text; namespace KanSan.Base.Interfaces { public interface IDatabaseEntry { int ID { get; set; } Guid GuidNr { get; set; } } }