mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08:00
15 lines
332 B
TypeScript
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;
|
|
}
|
|
}
|