aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/actions/panelChangeActions.ts
blob: 82072c7fe413dae80a2ff1b074b8a17990ca594d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Action } from '../../../../framework/src/flux/action';
import { PanelId } from '../models/panelId';

/** 
 * Represents an action causing the store to update the panel. 
 */
export class SetPanelAction extends Action {
  /**
   * Initialize this instance.
   * @param panelId Action to set the current panel by its Id.
   */
  constructor(public panelId: PanelId) {
    super();
  }
}