UNPKG

apt-maintenance-account

Version:

Apartment Maintenance Account Tracking Application - Client Side in Angular

17 lines (12 loc) 290 B
import { Message } from './message.model'; export class WarningMessage extends Message { public constructor( public title: string = '', public text: string = '' ) { super(title, text); } public isWarning(): boolean { return true; } }