mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
message response
This commit is contained in:
14
src/models/response/messageResponse.ts
Normal file
14
src/models/response/messageResponse.ts
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user