function Category(id, parentID, title, description, channelID){
	this.ID	= id;
	this.ParentID	= parentID;
	this.Title	= title;
	this.Description	= description;
	this.ChannelID	= channelID;
}

function Playlist(id, title, shortDescription, longDescription, creationDateTime,modificationDateTime,expiryDateTime,userID,clientID,scheduled,timeHH,timeMM,timeType,parentID,image){
	this.ID	= id;
	this.Title	= title;
	this.ShortDescription	= shortDescription;
	this.LongDescription	= longDescription;
	this.CreationDateTime	= creationDateTime;
	this.ModificationDateTime	= modificationDateTime;
	this.ExpiryDateTime	= expiryDateTime;
	this.UserID	= userID;
	this.ClientID	= clientID;
	this.Scheduled	= scheduled;
	this.TimeHH	= timeHH;
	this.TimeMM	= timeMM;
	this.TimeType	= timeType;
	this.ParentID	= parentID;
	this.Img	= image;
}

function Content(clientID,channelID,playlistID,contentSequenceID,contentID,metaDataID,title,shortDesc,longDesc,url,isDefault,isFile,image,duration,height,width,isAvailable,rating,transcriptText,transcriptStartTime,transcriptEndTime,transcriptType,isModerated,isRejected,adTag,sequence,keywords,uploadDateTime,expiryDateTime,videoPath,thumbnailPath,contentTypeID,typeTitle,typeDescription,isScheduled,link,videoLink,titleLink,doNotShowInPlaylist,noClickAway,categories){
	this.ClientID = clientID;
	this.ChannelID = channelID;
	this.PlaylistID = playlistID;
	this.ContentSequenceID = contentSequenceID;
	this.ContentID = contentID;
	this.MetaDataID = metaDataID;
	this.Title = title;
	this.ShortDesc = shortDesc;
	this.LongDesc = longDesc;
	this.URL = url;
	this.IsDefault = isDefault;
	this.IsFile = isFile;
	this.Img = image;
	this.Duration = duration;
	this.Height = height;
	this.Width = width;
	this.IsAvailable = isAvailable;
	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.Sequence = sequence;
	this.Keywords = keywords;
	this.UploadDateTime = uploadDateTime;
	this.ExpiryDateTime = expiryDateTime;
	this.VideoPath = videoPath;
	this.ThumbnailPath = thumbnailPath;
	this.ContentTypeID = contentTypeID;
	this.TypeTitle = typeTitle;
	this.TypeDescription = typeDescription;
	this.IsScheduled = isScheduled;
	this.Lnk = link;
	this.VideoLink = videoLink;
	this.TitleLink = titleLink;
	this.DoNotShowInPlaylist = doNotShowInPlaylist;
	this.NoClickAway = noClickAway;
	this.Categories = categories;
}