function EpgChannel(id, url, redirectUrl, quality, created, changed) {
	this.id = id;
	this.url = url;
	this.redirectUrl = redirectUrl;
	this.quality = quality;
	this.created = created;
	this.changed = changed;
}