1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

message response

This commit is contained in:
Kyle Spearrin
2018-05-15 22:47:52 -04:00
parent 892f13f8ee
commit 33effb1a4d
3 changed files with 55 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
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;
}
}