Files
demo-ddd-without-oop/csharp-oop/Domain/AggregateRoot.cs
T
Oli Sturm 3e9f0b56c9 initial
2026-04-21 14:43:06 +01:00

8 lines
174 B
C#

namespace CsharpOop.Domain;
/// Conventional DDD base type for aggregates
public abstract class AggregateRoot<TId>
{
public TId Id { get; protected set; } = default!;
}