summaryrefslogtreecommitdiff
path: root/src/app/BloggerToDasBlog.Console/BloggerEntryXmlElement.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/BloggerToDasBlog.Console/BloggerEntryXmlElement.cs')
-rw-r--r--src/app/BloggerToDasBlog.Console/BloggerEntryXmlElement.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/app/BloggerToDasBlog.Console/BloggerEntryXmlElement.cs b/src/app/BloggerToDasBlog.Console/BloggerEntryXmlElement.cs
new file mode 100644
index 0000000..d0b01ee
--- /dev/null
+++ b/src/app/BloggerToDasBlog.Console/BloggerEntryXmlElement.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace BloggerToDasBlog.Console {
+ public class BloggerEntryXmlElement {
+ public const String Root = "bi_entry";
+ public const String Url = "bi_url";
+ public const String Title = "bi_title";
+ public const String Body = "bi_body";
+ public const String Author = "bi_author";
+ public const String Date = "bi_date";
+ }
+} \ No newline at end of file