Update models with groups, colelctions, workflows and processes
[arvados-workbench2.git] / src / models / group.ts
diff --git a/src/models/group.ts b/src/models/group.ts
new file mode 100644 (file)
index 0000000..dae516b
--- /dev/null
@@ -0,0 +1,18 @@
+// Copyright (C) The Arvados Authors. All rights reserved.
+//
+// SPDX-License-Identifier: AGPL-3.0
+
+import { Resource } from "../common/api/common-resource-service";
+import { ResourceKind } from "./kinds";
+
+export interface GroupResource extends Resource {
+    kind: ResourceKind.Group;
+    name: string;
+    groupClass: string;
+    description: string;
+    properties: string;
+    writeableBy: string[];
+    trashAt: string;
+    deleteAt: string;
+    isTrashed: boolean;
+}
\ No newline at end of file