[SDC] rebase 1710 code
[sdc.git] / catalog-ui / src / app / models / modal.ts
1 import { ButtonModel } from 'app/models';
2
3 export class ModalModel {
4     size: string; 'xl|l|md|sm|xsm'
5     title: string;
6     content: any;
7     buttons: Array<ButtonModel>;
8
9     constructor(size?: string, title?: string, content?: any, buttons?: Array<ButtonModel>) {
10         this.size = size;
11         this.title = title;
12         this.content = content;
13         this.buttons = buttons;
14     }
15 }
16