mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 14:53:33 +00:00
16 lines
353 B
TypeScript
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;
|
|
}
|
|
}
|