summaryrefslogtreecommitdiff
path: root/Data/BeaconsXML.cs
diff options
context:
space:
mode:
authorhurter2011-08-31 16:25:05 +0000
committerhurter2011-08-31 16:25:05 +0000
commit42dc1d36235292786322d28340a81c6cb3fd46c0 (patch)
tree6f4ef0d4ad672c54500d9457af90fc599ac9b299 /Data/BeaconsXML.cs
parent5aa429a3e7e9f610f5b2dd8f8e2a865ecfd25ea3 (diff)
downloadamilis-42dc1d36235292786322d28340a81c6cb3fd46c0.zip
amilis-42dc1d36235292786322d28340a81c6cb3fd46c0.tar.gz
amilis-42dc1d36235292786322d28340a81c6cb3fd46c0.tar.bz2
amilis-42dc1d36235292786322d28340a81c6cb3fd46c0.tar.xz
Diffstat (limited to 'Data/BeaconsXML.cs')
-rw-r--r--Data/BeaconsXML.cs104
1 files changed, 104 insertions, 0 deletions
diff --git a/Data/BeaconsXML.cs b/Data/BeaconsXML.cs
new file mode 100644
index 0000000..c08afe3
--- /dev/null
+++ b/Data/BeaconsXML.cs
@@ -0,0 +1,104 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Xml.Serialization;
+
+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 points
+ {
+ private pointsPoint[] itemsField;
+
+ /// <remarks/>
+ [System.Xml.Serialization.XmlElementAttribute("point", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
+ public pointsPoint[] 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 pointsPoint
+ {
+
+ private string codeField;
+ private string typeField;
+ private double lattitudeField;
+ private double longitudeField;
+
+ /// <remarks/>
+ [System.Xml.Serialization.XmlAttributeAttribute()]
+ public string code
+ {
+ get
+ {
+ return this.codeField;
+ }
+ set
+ {
+ this.codeField = value;
+ }
+ }
+
+ /// <remarks/>
+ [System.Xml.Serialization.XmlAttributeAttribute()]
+ public string type
+ {
+ get
+ {
+ return this.typeField;
+ }
+ set
+ {
+ this.typeField = value;
+ }
+ }
+
+ /// <remarks/>
+ [System.Xml.Serialization.XmlAttributeAttribute()]
+ public double lat
+ {
+ get
+ {
+ return this.lattitudeField;
+ }
+ set
+ {
+ this.lattitudeField = value;
+ }
+ }
+
+ /// <remarks/>
+ [System.Xml.Serialization.XmlAttributeAttribute()]
+ public double lon
+ {
+ get
+ {
+ return this.longitudeField;
+ }
+ set
+ {
+ this.longitudeField = value;
+ }
+ }
+ }
+}