Thursday, May 8, 2008

C# Class

This is just so my blog site has a new entry on it.

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; }
}

}

}