mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
import { KeysResponse } from "./keys.response";
|
|
|
|
export class OrganizationKeysResponse extends KeysResponse {
|
|
constructor(response: any) {
|
|
super(response);
|
|
}
|
|
}
|