Files
juipnet/Infrastructure/Hncore.Infrastructure/DDD/IEntity.cs
“wanyongkang” 40a40b6d36 忽略
2020-12-28 14:55:48 +08:00

17 lines
212 B
C#

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