1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00
Files
browser/libs/common/src/models/response/organization-keys.response.ts

8 lines
168 B
TypeScript

import { KeysResponse } from "./keys.response";
export class OrganizationKeysResponse extends KeysResponse {
constructor(response: any) {
super(response);
}
}