blob: 8a7e5b42faeb18b35efbad437780215d0d665a46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
namespace BloggerToDasBlog.Console {
public interface IBloggerComment {
string Author { get; set; }
DateTime Date { get; set; }
string Body { get; set; }
}
}
|