We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be more ergonomic for string fields values such as these:
public static class AddressTypeCodes { public const string POSTAL = "postal"; public const string PHYSICAL = "physical"; public const string BOTH = "both"; }
to be enums
Originally posted by @johnstairs in #2 (comment)
The text was updated successfully, but these errors were encountered:
C# doesn't support string value enums, so doing this requires additional work for the serializer and parser.
Sorry, something went wrong.
Merge pull request #5 from FirelyTeam/feature/improve-valueset-gen
01f1b91
Used the new features in the fhir model information (experimental, st…
No branches or pull requests
It would be more ergonomic for string fields values such as these:
to be enums
Originally posted by @johnstairs in #2 (comment)
The text was updated successfully, but these errors were encountered: