// Copyright 2005 by Omar Al Zabir. All rights are reserved.
//
// If you like this code then feel free to go ahead and use it.
// The only thing I ask is that you don't remove or alter my copyright notice.
//
// Your use of this software is entirely at your own risk. I make no claims or
// warrantees about the reliability or fitness of this code for any particular purpose.
// If you make changes or additions to this code please mark your code as being yours.
//
// website http://www.oazabir.com, email OmarAlZabir@gmail.com, msn oazabir@hotmail.com
using System;
using System.Data;
using System.Security.Cryptography;
using System.Xml.Serialization;
namespace RSSBlogAPI{
[Serializable][XmlRoot("category")]
public class Category
{
private string _Id;
private string _Title;
public Category()
{
_Id = string.Empty;
_Title = string.Empty;
}
public Category( int localId, string id, string title )
{
_Id = id;
_Title = title;
}
public string Id
{
get
{
return ( _Id != string.Empty ) ? _Id : _Title;
}
set { _Id = value; }
}
public string Title
{
get { return _Title; }
set { _Title = value; }
}
public override string ToString()
{
return this._Title;
}
}
}
|