feature: FHIR R4 Inbound Facade

This commit is contained in:
voltsrage
2026-06-21 13:53:38 +08:00
parent 9f96f54007
commit a43db52813
42 changed files with 2873 additions and 3 deletions
@@ -0,0 +1,12 @@
public class FhirMappingException : Exception
{
public string FhirIssueCode { get; }
public int HttpStatus { get; }
public FhirMappingException(string message, string fhirIssueCode, int httpStatus = 422)
: base(message)
{
FhirIssueCode = fhirIssueCode;
HttpStatus = httpStatus;
}
}