ds/ItemResources.js


goog.provide("spv.ds.ItemResources");

/**
 * @struct
 * @constructor
 * @export
 */
spv.ds.ItemResources = function()
{
	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.name;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.short_text;

	/**
	 * @type {boolean}
	 * @nocollapse
	 */
	this.has_readmore;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.icon;
};