1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 02:33:46 +00:00

apis for groups and collections

This commit is contained in:
Kyle Spearrin
2018-07-06 12:40:43 -04:00
parent 4ae4b667ff
commit 2a526940fd
12 changed files with 198 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
import { SelectionReadOnlyRequest } from './selectionReadOnlyRequest';
export class GroupRequest {
name: string;
accessAll: boolean;
externalId: string;
collections: SelectionReadOnlyRequest[] = [];
}