blob: b7bdf251fe538df2b597d4ef24b27e7e5c8fef24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import { ButtonModel } from 'app/models';
export class ModalModel {
size: string; 'xl|l|md|sm|xsm'
title: string;
content: any;
buttons: Array<ButtonModel>;
type: string; 'standard|error|alert'
constructor(size?: string, title?: string, content?: any, buttons?: Array<ButtonModel>, type?:string) {
this.size = size;
this.title = title;
this.content = content;
this.buttons = buttons;
this.type = type || 'standard';
}
}
|