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