ds/IntroPageImage.js

/**
 * @fileoverview Exposed data type for use outside of DsClient.
 *               All properties should be exposed to allow use from uncompiled
 *               code.
 *
 * @author anders.rejdebrant@spark-vision.com (Anders Rejdebrant)
 */

goog.provide('spv.ds.IntroPageImage');




/**
 * @struct
 * @constructor
 * @param {string} path
 * @param {string} platform
 */
spv.ds.IntroPageImage = function(path, platform)
{
	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.path = path;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.platform = platform;
};