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

5 lines
126 B
C#

namespace CsharpOop.Domain;
/// Value object used to wrap the aggregate identity
public sealed record AccountId(Guid Value);