using System; namespace Quadarax.Foundation.Core.Data.Interface.Entity { public interface IDao where TKey : IEquatable { public TKey Id { get; set; } } }