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

9 lines
185 B
C#

namespace Hncore.Infrastructure.DDD
{
public abstract class AggregateRoot<TId> : Entity<TId>, IAggregateRoot<TId>
{
public AggregateRoot()
{
}
}
}