12 lines
198 B
C#
12 lines
198 B
C#
namespace MessengerApi.Db.Contracts.Entities
|
|
{
|
|
public interface IEntity
|
|
{
|
|
Guid Id { get; }
|
|
}
|
|
|
|
public interface IEntity<T> : IEntity where T : class, IEntity
|
|
{
|
|
}
|
|
}
|