This commit is contained in:
2024-07-18 22:48:21 -05:00
commit 9cc712f46d
25514 changed files with 20551518 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<Support xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://vezel.dev/novadrop/dc/Support Support.xsd" xmlns="https://vezel.dev/novadrop/dc/Support">
<CategoryInfo>
<Category contentStringId="100" nameStringId="0" />
<Category contentStringId="101" nameStringId="1" />
<Category contentStringId="102" nameStringId="2" />
<Category contentStringId="103" nameStringId="3" />
<Category contentStringId="104" nameStringId="4" />
</CategoryInfo>
</Support>
+28
View File
@@ -0,0 +1,28 @@
<!-- SPDX-License-Identifier: 0BSD -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dc="https://vezel.dev/novadrop/dc"
xmlns="https://vezel.dev/novadrop/dc/Support"
targetNamespace="https://vezel.dev/novadrop/dc/Support"
xsi:schemaLocation="https://vezel.dev/novadrop/dc ../DataCenter.xsd"
elementFormDefault="qualified">
<xsd:complexType name="Support">
<xsd:sequence>
<xsd:element name="CategoryInfo" type="Support_CategoryInfo" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Support_CategoryInfo">
<xsd:sequence>
<xsd:element name="Category" type="Support_CategoryInfo_Category" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Support_CategoryInfo_Category">
<xsd:attribute name="contentStringId" type="xsd:int" use="required" />
<xsd:attribute name="nameStringId" type="xsd:int" use="required" />
</xsd:complexType>
<xsd:element name="Support" type="Support" />
</xsd:schema>