mirror of
https://github.com/bitwarden/browser
synced 2026-01-11 13:03:57 +00:00
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import { Collection } from '../domain/collection';
|
|
|
|
export class CollectionRequest {
|
|
name: string;
|
|
|
|
constructor(collection: Collection) {
|
|
this.name = collection.name ? collection.name.encryptedString : null;
|
|
}
|
|
}
|