Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / store / actions / workspace.action.ts
1 /**
2  * Created by ob0695 on 7/17/2018.
3  */
4
5 export class UpdateIsViewOnly {
6     static readonly type = '[WORKSPACE] UpdateIsViewOnly';
7
8     constructor(public isViewOnly:boolean) {
9     }
10 }
11
12 export class UpdateIsDesigner {
13     static readonly type = '[WORKSPACE] UpdateIsDesigner';
14
15     constructor(public isDesigner:boolean) {
16     }
17 }