blob: 213d5378fc5030a12ca4a6c5cbfd91ad933d4d08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
using System;
namespace BloggerToDasBlog.Console {
public class BloggerComment : IBloggerComment {
public BloggerComment( ) {}
public BloggerComment( string author, DateTime date, string body ) {
_author = author;
_date = date;
_body = body;
}
public string Author {
get { return _author; }
set { _author = value; }
}
public DateTime Date {
get { return _date; }
set { _date = value; }
}
public string Body {
get { return _body; }
set { _body = value; }
}
private String _author;
private DateTime _date;
private String _body;
}
}
|