mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
export class CryptoAgentUserKeyRequest {
|
|
key: string;
|
|
|
|
constructor(key: string) {
|
|
this.key = key;
|
|
}
|
|
}
|