mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
13 lines
228 B
TypeScript
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;
|
|
}
|
|
}
|