UNPKG

apt-maintenance-account

Version:

Apartment Maintenance Account Tracking Application - Client Side in Angular

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