mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
export class CipherBulkDeleteRequest {
|
|
ids: string[];
|
|
|
|
constructor(ids: string[]) {
|
|
this.ids = ids == null ? [] : ids;
|
|
}
|
|
}
|