main
1using System;
2using System.Collections.Generic;
3
4namespace BloggerToDasBlog.Console {
5 public interface IBloggerEntry {
6 Uri Url { get; }
7
8 string Title { get; set; }
9
10 string Body { get; set; }
11
12 string Author { get; set; }
13
14 DateTime Date { get; set; }
15
16 IList< IBloggerComment > Comments { get; }
17 }
18}