function Channel(ID, Name, ShortDescription, LongDescription, CreationDateTime, ModificationDateTime, UserID, IsActive, Logo, ClientID, ChannelID, CDNID){
	this.ID						= ID;
	this.Name					= Name;
	this.ShortDescription		= ShortDescription;
	this.LongDescription		= LongDescription;
	this.CreationDateTime		= CreationDateTime;
	this.ModificationDateTime	= ModificationDateTime;
	this.UserID					= UserID;
	this.IsActive				= IsActive;
	this.ChannelLogo			= Logo;
	this.ClientID				= ClientID;
	this.ChannelID				= ChannelID;
	this.CDNID					= CDNID;
}

function Content(playlistID,contentID,contentMetaDataID,sequenceID,title,shortDesc,longDesc,url,isDefault,img,duration,height,width,isAvailable,keywords,videoPath,thumbnailPath,contentTypeID,contentTypeTitle,contentTypeDesc,isScheduled,lnk,videoLink,titleLink,rating,transcriptText,transcriptStartTime,transcriptEndTime,transcriptType,isModerated,isRejected,adTag,doNotShowInPlaylist,noClickAway){

	this.PlaylistID				= playlistID;
	this.ContentID				= contentID;
	this.ContentMetaDataID		= contentMetaDataID;
	this.SequenceID				= sequenceID;
	this.Title					= title;
	this.ShortDesc				= shortDesc;
	this.LongDesc				= longDesc;
	this.Url					= url;
	this.IsDefault				= isDefault;
	this.Img					= img;
	this.Duration				= duration;
	this.Height					= height;
	this.Width					= width;
	this.IsAvailable			= isAvailable;
	this.Keywords				= keywords;
	this.VideoPath				= videoPath;
	this.ThumbnailPath			= thumbnailPath;
	this.ContentTypeID			= contentTypeID;
	this.ContentTypeTitle		= contentTypeTitle;
	this.ContentTypeDesc		= contentTypeDesc;
	this.IsScheduled			= isScheduled;
	this.Lnk					= lnk;
	this.VideoLink				= videoLink;
	this.TitleLink				= titleLink;

	this.Rating					= rating;
	this.TranscriptText			= transcriptText;
	this.TranscriptStartTime	= transcriptStartTime;
	this.TranscriptEndTime		= transcriptEndTime;
	this.TranscriptType			= transcriptType;
	this.IsModerated			= isModerated;
	this.IsRejected				= isRejected;
	this.AdTag					= adTag;
	this.DoNotShowInPlaylist	= doNotShowInPlaylist;
	this.NoClickAway			= noClickAway;
}


function PlayList(ID, Name){
	this.ID						= ID;
	this.Name					= Name;
}

function TagCloud(tagID, tagName, tagQTY, tagSize){
	this.TagID				= tagID
	this.TagName			= tagName
	this.TagQTY				= tagQTY
	this.TagSize			= tagSize
}
