I have a C# class member like so:
class Case
{
string ID;
string JurisdictionID;
}
the corresponding XSD looks like:
<xs:element name="CaseTrackingID" type="IDType"/>
<xs:complexType name="IDType">
<xs:sequence>
<xs:element name="ID" type="xs:string"/>
<xs:element name="IDJurisdictionText" type="xs:string" minOccurs="0"/>
<xs:element name="IDType" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
How would I annotate my class so that CaseTrackingID\ID
maps to Case.ID
and CaseTrackingID\IDJurisdictionText
maps to Case.JurisdictionID
?