1using System.Xml.Serialization;
2
3
4/// <remarks/>
5[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.jasonkemp.ca/logentry.xsd")]
6[System.Xml.Serialization.XmlRootAttribute(Namespace="http://www.jasonkemp.ca/logentry.xsd", IsNullable=false)]
7public class log {
8    
9    /// <remarks/>
10    [System.Xml.Serialization.XmlElementAttribute("logEntry")]
11    public logEntry[] logEntry;
12    
13    /// <remarks/>
14    [System.Xml.Serialization.XmlAttributeAttribute()]
15    public string name;
16}
17
18/// <remarks/>
19[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.jasonkemp.ca/logentry.xsd")]
20public class logEntry {
21    
22    /// <remarks/>
23    public string data;
24    
25    /// <remarks/>
26    public System.DateTime timestamp;
27    
28    /// <remarks/>
29    [System.Xml.Serialization.XmlIgnoreAttribute()]
30    public bool timestampSpecified;
31    
32    /// <remarks/>
33    [System.Xml.Serialization.XmlAttributeAttribute()]
34    public int category;
35    
36    /// <remarks/>
37    [System.Xml.Serialization.XmlIgnoreAttribute()]
38    public bool categorySpecified;
39}
40
41