blob: eaa218d6c30f07a5702afb9b131b43179b9e785e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using CookComputing.XmlRpc;
namespace MetaWeblogApi {
/// <summary>
/// This struct represents the information about a category that could be returned by the
/// getCategories() method.
/// </summary>
[XmlRpcMissingMapping( MappingAction.Ignore )]
public struct Category {
public string description;
public string title;
}
}
|