This commit is contained in:
Oli Sturm
2026-04-21 14:43:06 +01:00
commit 3e9f0b56c9
11 changed files with 258 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace CsharpOop.Domain;
/// Conventional DDD base type for aggregates
public abstract class AggregateRoot<TId>
{
public TId Id { get; protected set; } = default!;
}