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

6 lines
110 B
C#

namespace Hncore.Infrastructure.DDD
{
public interface IAggregateRoot<TId> : IEntity<TId>
{
}
}