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

5 lines
126 B
C#

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