main
 1using System;
 2
 3namespace BloggerToDasBlog.Console {
 4	public class BloggerCommentXmlElement {
 5		public const String Root = "bi_comments";
 6		public const String Author = "bi_commentauthor";
 7		public const String Date = "bi_commentdate";
 8		public const String Body = "bi_commentbody";
 9	}
10}