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

6 lines
110 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
namespace Hncore.Infrastructure.DDD
{
public interface IAggregateRoot<TId> : IEntity<TId>
{
}
}