diff options
Diffstat (limited to 'src/app/BloggerToDasBlog.Console/BloggerCommentXmlElement.cs')
| -rw-r--r-- | src/app/BloggerToDasBlog.Console/BloggerCommentXmlElement.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/app/BloggerToDasBlog.Console/BloggerCommentXmlElement.cs b/src/app/BloggerToDasBlog.Console/BloggerCommentXmlElement.cs new file mode 100644 index 0000000..26a7d43 --- /dev/null +++ b/src/app/BloggerToDasBlog.Console/BloggerCommentXmlElement.cs @@ -0,0 +1,10 @@ +using System;
+
+namespace BloggerToDasBlog.Console {
+ public class BloggerCommentXmlElement {
+ public const String Root = "bi_comments";
+ public const String Author = "bi_commentauthor";
+ public const String Date = "bi_commentdate";
+ public const String Body = "bi_commentbody";
+ }
+}
\ No newline at end of file |
