1//------------------------------------------------------------------------------
2// <auto-generated>
3//     This code was generated by a tool.
4//     Runtime Version:2.0.50727.42
5//
6//     Changes to this file may cause incorrect behavior and will be lost if
7//     the code is regenerated.
8// </auto-generated>
9//------------------------------------------------------------------------------
10
11using System.Xml.Serialization;
12
13// 
14// This source code was auto-generated by xsd, Version=2.0.50727.42.
15// 
16
17
18/// <remarks/>
19[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.42")]
20[System.SerializableAttribute()]
21[System.Diagnostics.DebuggerStepThroughAttribute()]
22[System.ComponentModel.DesignerCategoryAttribute("code")]
23[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.jasonkemp.ca/logentry.xsd")]
24[System.Xml.Serialization.XmlRootAttribute(Namespace="http://www.jasonkemp.ca/logentry.xsd", IsNullable=false)]
25public partial class log {
26    
27    private logEntry[] logEntryField;
28    
29    private string nameField;
30    
31    /// <remarks/>
32    [System.Xml.Serialization.XmlElementAttribute("logEntry")]
33    public logEntry[] logEntry {
34        get {
35            return this.logEntryField;
36        }
37        set {
38            this.logEntryField = value;
39        }
40    }
41    
42    /// <remarks/>
43    [System.Xml.Serialization.XmlAttributeAttribute()]
44    public string name {
45        get {
46            return this.nameField;
47        }
48        set {
49            this.nameField = value;
50        }
51    }
52}
53
54/// <remarks/>
55[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.42")]
56[System.SerializableAttribute()]
57[System.Diagnostics.DebuggerStepThroughAttribute()]
58[System.ComponentModel.DesignerCategoryAttribute("code")]
59[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.jasonkemp.ca/logentry.xsd")]
60public partial class logEntry {
61    
62    private string dataField;
63    
64    private string categoryField;
65    
66    private System.DateTime timestampField;
67    
68    private bool timestampFieldSpecified;
69    
70    /// <remarks/>
71    public string data {
72        get {
73            return this.dataField;
74        }
75        set {
76            this.dataField = value;
77        }
78    }
79    
80    /// <remarks/>
81    [System.Xml.Serialization.XmlElementAttribute(DataType="integer")]
82    public string category {
83        get {
84            return this.categoryField;
85        }
86        set {
87            this.categoryField = value;
88        }
89    }
90    
91    /// <remarks/>
92    public System.DateTime timestamp {
93        get {
94            return this.timestampField;
95        }
96        set {
97            this.timestampField = value;
98        }
99    }
100    
101    /// <remarks/>
102    [System.Xml.Serialization.XmlIgnoreAttribute()]
103    public bool timestampSpecified {
104        get {
105            return this.timestampFieldSpecified;
106        }
107        set {
108            this.timestampFieldSpecified = value;
109        }
110    }
111}
112