bitwarden-estensione-browser/libs/common/src/models/request/cipherBulkMoveRequest.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
199 B
TypeScript
Raw Normal View History

2018-06-12 17:45:02 +02:00
export class CipherBulkMoveRequest {
ids: string[];
folderId: string;
constructor(ids: string[], folderId: string) {
2018-06-12 23:12:27 +02:00
this.ids = ids == null ? [] : ids;
2018-06-12 17:45:02 +02:00
this.folderId = folderId;
}
}