5 lines
137 B
C#
5 lines
137 B
C#
namespace CsharpOopSimplified1.Domain;
|
|
|
|
/// Value object used to wrap the aggregate identity
|
|
public sealed record AccountId(Guid Value);
|