import { ButtonModel } from 'app/models'; export class ModalModel { size: string; 'xl|l|md|sm|xsm' title: string; content: any; buttons: Array; constructor(size?: string, title?: string, content?: any, buttons?: Array) { this.size = size; this.title = title; this.content = content; this.buttons = buttons; } }