using System; namespace Hncore.Infrastructure.DDD { public interface IEntity { } public interface IEntity: IEntity { TId Id { get; } } }