mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
import { BaseResponse } from "./base.response";
|
|
|
|
export class SendFileDownloadDataResponse extends BaseResponse {
|
|
id: string = null;
|
|
url: string = null;
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.id = this.getResponseProperty("Id");
|
|
this.url = this.getResponseProperty("Url");
|
|
}
|
|
}
|