From 42dc1d36235292786322d28340a81c6cb3fd46c0 Mon Sep 17 00:00:00 2001 From: hurter Date: Wed, 31 Aug 2011 16:25:05 +0000 Subject: --- Data/BeaconsXML.cs | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 Data/BeaconsXML.cs (limited to 'Data/BeaconsXML.cs') 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 +{ + /// + [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; + + /// + [System.Xml.Serialization.XmlElementAttribute("point", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] + public pointsPoint[] Items + { + get + { + return this.itemsField; + } + set + { + this.itemsField = value; + } + } + } + + /// + [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; + + /// + [System.Xml.Serialization.XmlAttributeAttribute()] + public string code + { + get + { + return this.codeField; + } + set + { + this.codeField = value; + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute()] + public string type + { + get + { + return this.typeField; + } + set + { + this.typeField = value; + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute()] + public double lat + { + get + { + return this.lattitudeField; + } + set + { + this.lattitudeField = value; + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute()] + public double lon + { + get + { + return this.longitudeField; + } + set + { + this.longitudeField = value; + } + } + } +} -- cgit v1.1