summaryrefslogtreecommitdiff
path: root/Data/RoutesXML.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Data/RoutesXML.cs')
-rw-r--r--Data/RoutesXML.cs73
1 files changed, 73 insertions, 0 deletions
diff --git a/Data/RoutesXML.cs b/Data/RoutesXML.cs
new file mode 100644
index 0000000..2ec7ea5
--- /dev/null
+++ b/Data/RoutesXML.cs
@@ -0,0 +1,73 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Data
+{
+ /// <remarks/>
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.42")]
+ [System.SerializableAttribute()]
+ [System.Diagnostics.DebuggerStepThroughAttribute()]
+ [System.ComponentModel.DesignerCategoryAttribute("code")]
+ [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
+ [System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
+ public partial class routes
+ {
+ private routesRoute[] itemsField;
+
+ /// <remarks/>
+ [System.Xml.Serialization.XmlElementAttribute("route", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
+ public routesRoute[] Items
+ {
+ get
+ {
+ return this.itemsField;
+ }
+ set
+ {
+ this.itemsField = value;
+ }
+ }
+ }
+
+ /// <remarks/>
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.42")]
+ [System.SerializableAttribute()]
+ [System.Diagnostics.DebuggerStepThroughAttribute()]
+ [System.ComponentModel.DesignerCategoryAttribute("code")]
+ [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
+ public partial class routesRoute
+ {
+
+ private string _b1;
+ private string _b2;
+
+ /// <remarks/>
+ [System.Xml.Serialization.XmlAttributeAttribute()]
+ public string b1
+ {
+ get
+ {
+ return this._b1;
+ }
+ set
+ {
+ this._b1 = value;
+ }
+ }
+
+ /// <remarks/>
+ [System.Xml.Serialization.XmlAttributeAttribute()]
+ public string b2
+ {
+ get
+ {
+ return this._b2;
+ }
+ set
+ {
+ this._b2 = value;
+ }
+ }
+ }
+}