Example #1
0
		public Post() : base() {
			// These are the only required item.
			Content = new Content();
			Authors = new AuthorReferences();
            Attachments = new Attachments();
            Authors = new AuthorReferences();
            Categories = new CategoryReferences();
            Comments = new Comments();
		}
Example #2
0
		public Comment()
			: base() {
			Content = new Content();
		}