blob: 3d03374157722e94ed5fa7507666b0eb1c8a4e8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using CookComputing.XmlRpc;
namespace MetaWeblogApi {
/// <summary>
/// This struct represents information about a user.
/// </summary>
[XmlRpcMissingMapping( MappingAction.Ignore )]
public struct UserInfo {
public string url;
public string blogid;
public string blogName;
public string firstname;
public string lastname;
public string email;
public string nickname;
}
}
|