When feature toggle is active then SDNC preload files is enable.
[vid.git] / vid-webpack-master / src / app / shared / components / messageModal / message-modal.model.ts
1 import {ButtonType} from "../customModal/models/button.type";
2
3 export class MessageModalModel {
4   title : string;
5   text : string;
6   type : 'error' | 'info' | 'success';
7   buttons :  {text: string, size: string, type : ButtonType, closeModal: boolean}[];
8
9   constructor( title : string, text : string, type , buttons : {text: string, size: string, type : ButtonType, closeModal: boolean}[]){
10     this.title = title;
11     this.text = text;
12     this.type = type;
13     this.buttons = buttons;
14   }
15 }