Files
demo-ddd-without-oop/csharp-oop-simplified1/Domain/AccountId.cs
T
2026-04-21 23:13:26 +01:00

5 lines
137 B
C#

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