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

9 lines
185 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
namespace Hncore.Infrastructure.DDD
{
public abstract class AggregateRoot<TId> : Entity<TId>, IAggregateRoot<TId>
{
public AggregateRoot()
{
}
}
}