///	<summary>Represents an item from the content table in the db. Mirrors Content object in .NET site architecture<</summary>
function Content(id, contentNumber, site, typeId, author, contentName, copy, sortOrder, createdBy, createDate, updatedBy, updateDate, typeCode) {
	this.id = id;
	this.contentNumber = contentNumber;
	this.site = site;
	this.typeId = typeId;
	this.author = author;
	this.contentName = contentName;
	this.copy = copy;
	this.sortOrder = sortOrder;
	this.createdBy = createdBy;
	this.createDate = createDate;
	this.updatedBy = updatedBy;
	this.updateDate = updateDate;
	this.typeCode = typeCode;
	
	///	<summary>Retrieves the content_type_code</summary>
	/// <returns><c>string</c> content_type_code</returns>
	this.GetTypeCode = function() {
		return this.typeCode;
	}
}