/**
* @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.GuiPathItem');
/**
* @export
* @struct
* @constructor
* @param {string} id
* @param {string} short_text
*/
spv.ds.GuiPathItem = function(id, short_text)
{
/**
* @type {string}
* @nocollapse
*/
this.id = id;
/**
* @type {string}
* @nocollapse
*/
this.short_text = short_text;
};