Files
juipnet/Infrastructure/Hncore.Infrastructure/DDD/AggregateRoot.cs

9 lines
193 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
namespace Hncore.Infrastructure.DDD
{
public abstract class AggregateRoot<TId> : Entity<TId>, IAggregateRoot<TId>
{
public AggregateRoot()
{
}
}
}