using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Improving.Blogs.Domain
{
public class Comment
{
public Comment()
{
}
public Comment(string body, string category)
{
this.body = body;
this.category = category;
}
private string category;
public string Category
{
get { return category; }
set { category = value; }
}
private string body;
public string Body
{
get { return body; }
set { body = value; }
}
}
}