clients/src/models/response/messageResponse.ts
2018-05-15 22:47:52 -04:00

15 lines
332 B
TypeScript

import { BaseResponse } from './baseResponse';
export class MessageResponse implements BaseResponse {
object: string;
title: string;
message: string;
raw: string;
constructor(title: string, message: string) {
this.object = 'message';
this.title = title;
this.message = message;
}
}