mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08:00
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
export class CipherBulkDeleteRequest {
|
|
ids: string[];
|
|
|
|
constructor(ids: string[]) {
|
|
this.ids = ids == null ? [] : ids;
|
|
}
|
|
}
|