Created
July 25, 2022 14:42
-
-
Save aeinbu/1f1c2d407f7c3694e232d5451f4d3b8f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract record StronglyTypedId<TValue>(TValue Value) | |
where TValue : notnull | |
{ | |
public override sealed string ToString() => $"{Value}"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment