1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00
Files
browser/common/src/models/request/cryptoAgentUserKeyRequest.ts
2021-10-25 18:21:40 +02:00

8 lines
122 B
TypeScript

export class CryptoAgentUserKeyRequest {
key: string;
constructor(key: string) {
this.key = key;
}
}