Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

9 lines
185 B
C#

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