namespace MessengerApi.Db.Contracts.Entities { public interface IEntity { Guid Id { get; } } public interface IEntity : IEntity where T : class, IEntity { } }