﻿if (!window.XboxLiveMarketplace)
	window.XboxLiveMarketplace = {};

XboxLiveMarketplace.EpixItemData = function(name, title, description, assetUrl, productUrl, assetType) 
{
    this.name = name;
    this.title = title;
    this.description = description;
    this.assetUrl = assetUrl;
    this.productUrl = productUrl;
    this.assetType = assetType;
}