/**
* @fileoverview This file contains internal data structures used in DsClient
*
* @author anders.rejdebrant@spark-vision.com (Anders Rejdebrant)
*/
goog.provide('spv.ds.impl.GoalStateResolver');
/**
* @struct
* @constructor
* @param {Array.<spv.ds.MenuItem>} items_to_add
* @param {Array.<spv.ds.MenuItem>} items_to_remove
*/
spv.ds.impl.GoalStateResolver = function(items_to_add, items_to_remove)
{
/**
* @type {Array.<spv.ds.MenuItem>}
*/
this.items_to_add = items_to_add;
/**
* @type {Array.<spv.ds.MenuItem>}
*/
this.items_to_remove = items_to_remove;
};