17 lines
212 B
C#
17 lines
212 B
C#
using System;
|
|
|
|
namespace Hncore.Infrastructure.DDD
|
|
{
|
|
public interface IEntity
|
|
{
|
|
|
|
}
|
|
public interface IEntity<TId>: IEntity
|
|
{
|
|
TId Id
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|