aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/actions/titleActions.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/framework/src/actions/titleActions.ts')
-rw-r--r--sdnr/wt/odlux/framework/src/actions/titleActions.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/framework/src/actions/titleActions.ts b/sdnr/wt/odlux/framework/src/actions/titleActions.ts
new file mode 100644
index 000000000..b641bab95
--- /dev/null
+++ b/sdnr/wt/odlux/framework/src/actions/titleActions.ts
@@ -0,0 +1,10 @@
+import { Action } from '../flux/action';
+
+import { IconType } from '../models/iconDefinition';
+
+export class SetTitleAction extends Action {
+
+ constructor(public title: string, public icon?: IconType) {
+ super();
+ }
+} \ No newline at end of file