in an xsd file I had a type enumeration with options N1 and N2 (as below) which through the conversion to a c# class was represented by an enum type, now to the type enumeration the option N2.1 has been added, which cannot be represented as an option in an enum type (dot is not allowed), what can I do?
Thanks
<xs:simpleType name="NaturaType">
<xs:restriction base="xs:string">
<xs:enumeration value="N1">
<xs:annotation>
<xs:documentation>Escluse ex. art. 15</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="N2">
<xs:annotation>
<xs:documentation>Non soggette</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>