mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
16 lines
327 B
TypeScript
16 lines
327 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;
|
|
}
|
|
}
|