Files
juipnet/Infrastructure/Hncore.Infrastructure/DDD/IEntity.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

17 lines
212 B
C#

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