~alexlauni/do-plugins/jolicloud

« back to all changes in this revision

Viewing changes to RememberTheMilk/src/RtmNet/Categories.cs

  • Committer: Alex Launi
  • Date: 2009-06-24 13:17:29 UTC
  • mfrom: (618.1.17 do-plugins)
  • Revision ID: alex.launi@gmail.com-20090624131729-1l9g76ejqq4leka4
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
                /// <summary>
13
13
                /// The name for the category.
14
14
                /// </summary>
15
 
                [XmlAttribute("name", Form=XmlSchemaForm.Unqualified)]
 
15
                [XmlAttribute ("name", Form=XmlSchemaForm.Unqualified)]
16
16
                public string CategoryName;
17
17
    
18
18
                /// <summary>
24
24
                /// <example>
25
25
                /// Group Id 91, Romance will return "/Life/Romance" as the Path and "/90/91" as its PathIds
26
26
                /// </example>
27
 
                [XmlAttribute("path", Form=XmlSchemaForm.Unqualified)]
 
27
                [XmlAttribute ("path", Form=XmlSchemaForm.Unqualified)]
28
28
                public string Path;
29
29
    
30
30
                /// <summary>
36
36
                /// <example>
37
37
                /// Group Id 91, Romance will return "/Life/Romance" as the Path and "/90/91" as its PathIds
38
38
                /// </example>
39
 
                [XmlAttribute("pathids", Form=XmlSchemaForm.Unqualified)]
 
39
                [XmlAttribute ("pathids", Form=XmlSchemaForm.Unqualified)]
40
40
                public string PathIds;
41
41
 
42
42
                /// <summary>
43
43
                /// An array of <see cref="SubCategory"/> items.
44
44
                /// </summary>
45
 
                [XmlElement("subcat", Form=XmlSchemaForm.Unqualified)]
 
45
                [XmlElement ("subcat", Form=XmlSchemaForm.Unqualified)]
46
46
                public SubCategory[] SubCategories;
47
47
 
48
48
                /// <summary>
49
49
                /// An array of <see cref="Group"/> items, listing the groups within this category.
50
50
                /// </summary>
51
 
                [XmlElement("group", Form=XmlSchemaForm.Unqualified)]
 
51
                [XmlElement ("group", Form=XmlSchemaForm.Unqualified)]
52
52
                public Group[] Groups;
53
53
        }
54
54
 
61
61
                /// <summary>
62
62
                /// The id of the category.
63
63
                /// </summary>
64
 
                [XmlAttribute("id", Form=XmlSchemaForm.Unqualified)]
 
64
                [XmlAttribute ("id", Form=XmlSchemaForm.Unqualified)]
65
65
                public long SubCategoryId;
66
66
    
67
67
                /// <summary>
68
68
                /// The name of the category.
69
69
                /// </summary>
70
 
                [XmlAttribute("name", Form=XmlSchemaForm.Unqualified)]
 
70
                [XmlAttribute ("name", Form=XmlSchemaForm.Unqualified)]
71
71
                public string SubCategoryName;
72
72
    
73
73
                /// <summary>
74
74
                /// The number of groups found within the category.
75
75
                /// </summary>
76
 
                [XmlAttribute("count", Form=XmlSchemaForm.Unqualified)]
 
76
                [XmlAttribute ("count", Form=XmlSchemaForm.Unqualified)]
77
77
                public long GroupCount;
78
78
        }
79
79