/**
 * Class: SubCategory
 * Last Modify By: DZ
 */
function SubCategory(subid, name, blurbId, desc) {
	this.ID = subid;
	this.Name = name;
	this.BlurbId = blurbId;
	this.Description = desc;
}