aboutsummaryrefslogtreecommitdiff
path: root/src/xsd/wixloc/LocalizationYesNoType.xsd
blob: 49efb64742dd71056a8a082f73929e6fe286db26 (plain)
1
2
3
4
5
6
7
8
9
10
11
<simpleType name="LocalizationYesNoType">
    <annotation>
      <documentation>Values of this type will either be "yes"/"true" or "no"/"false".</documentation>
    </annotation>
    <restriction base="xs:NMTOKEN">
      <enumeration value="no" />
      <enumeration value="false" />
      <enumeration value="yes" />
      <enumeration value="true" />
    </restriction>
  </simpleType>