aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/apiDemo/src/actions/modulesSuccess.ts
blob: 206ce8ad3b1fd799bcb155add931ac3c48242d74 (plain)
1
2
3
4
5
6
7
8
import { Action } from '../../../../framework/src/flux/action';
import { ModuleResult } from '../models/module';
export class ModulesRequestSuccess extends Action {
  constructor(public result: ModuleResult) {
    super();
  }
}
// error will be handled by the framework