blob: d0b01eefc7c3107e3a15b939b80d3c424244aa22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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";
}
}
|