From fad18020a7a15f4afdf425d8f5f2b9467141f598 Mon Sep 17 00:00:00 2001 From: mo khan Date: Sun, 10 Jun 2007 19:26:57 -0600 Subject: import from svn --- src/app/BloggerToDasBlog.Console/BloggerComment.cs | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/app/BloggerToDasBlog.Console/BloggerComment.cs (limited to 'src/app/BloggerToDasBlog.Console/BloggerComment.cs') diff --git a/src/app/BloggerToDasBlog.Console/BloggerComment.cs b/src/app/BloggerToDasBlog.Console/BloggerComment.cs new file mode 100644 index 0000000..213d537 --- /dev/null +++ b/src/app/BloggerToDasBlog.Console/BloggerComment.cs @@ -0,0 +1,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; + } +} \ No newline at end of file -- cgit v1.2.3