1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-05 01:53:13 +00:00
Files
jslib/src/cli/models/response/messageResponse.ts
2019-03-15 22:33:19 -04:00

16 lines
353 B
TypeScript

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