mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
14 lines
340 B
TypeScript
14 lines
340 B
TypeScript
import { CollectionResponse } from '../response/collectionResponse';
|
|
|
|
export class CollectionData {
|
|
id: string;
|
|
organizationId: string;
|
|
name: string;
|
|
|
|
constructor(response: CollectionResponse) {
|
|
this.id = response.id;
|
|
this.organizationId = response.organizationId;
|
|
this.name = response.name;
|
|
}
|
|
}
|