implement

This commit is contained in:
2026-02-11 19:10:55 +01:00
parent caea390d18
commit d72785e37e
14 changed files with 236 additions and 2 deletions

View File

@@ -22,4 +22,9 @@ public record DomainId : AbstractValueObject
new MinLengthRule(IdValue, 5)
];
}
public override string ToString()
{
return IdValue;
}
}