summaryrefslogtreecommitdiff
path: root/SpacesToDasBlog/trunk/src/app/SpacesToDasBlog.Console/Post.cs
blob: 2e9c81880f4e4d9ea2be788dd5813a55ec4d13c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using CookComputing.XmlRpc;

namespace MetaWeblogApi {
	/// <summary> 
	/// This struct represents the information about a post that could be returned by the 
	/// editPost(), getRecentPosts() and getPost() methods. 
	/// </summary> 
	[XmlRpcMissingMapping( MappingAction.Ignore )]
	public struct Post {
		public DateTime dateCreated;
		public string description;
		public string title;
		public string postid;
		public string[] categories;
	}
}