Files
juipnet/Infrastructure/Hncore.Infrastructure/DDD/IEntity.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

17 lines
228 B
C#

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