moved from SVN to git

This commit is contained in:
root
2016-06-27 01:45:38 +02:00
commit 886b5e4fd6
4735 changed files with 2306248 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/BeWo.Service.ServiceContracts" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/BeWo.Service.ServiceContracts" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="BeWoFault">
<xs:sequence>
<xs:element minOccurs="0" name="FaultType" type="tns:BeWoFaultType" />
<xs:element minOccurs="0" name="InnerExceptionMessage" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="InnerExceptionStackTrace" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Message" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="StackTrace" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
<xs:element name="BeWoFault" nillable="true" type="tns:BeWoFault" />
<xs:simpleType name="BeWoFaultType">
<xs:restriction base="xs:string">
<xs:enumeration value="Unknown" />
<xs:enumeration value="Concurrency" />
<xs:enumeration value="DeleteNotPossible" />
<xs:enumeration value="LoginNameTaken" />
</xs:restriction>
</xs:simpleType>
<xs:element name="BeWoFaultType" nillable="true" type="tns:BeWoFaultType" />
</xs:schema>