aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/faultApp/src/actions/panelChangeActions.ts
blob: dea07a0b0cc417fb7c49367d9f81cde5cf612949 (plain)
1
2
3
4
5
6
7
8
9
import { Action } from '../../../../framework/src/flux/action';
import { PanelId } from '../models/panelId';

export class SetPanelAction extends Action {
  constructor(public panelId: PanelId) {
    super();
  }
}