1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00
Files
browser/common/src/models/request/sendWithIdRequest.ts
2022-02-22 15:39:11 +01:00

13 lines
228 B
TypeScript

import { Send } from "../domain/send";
import { SendRequest } from "./sendRequest";
export class SendWithIdRequest extends SendRequest {
id: string;
constructor(send: Send) {
super(send);
this.id = send.id;
}
}