Added collection service, reorganized components structure
[arvados.git] / src / models / project.ts
index 830621b440d2e1ab1068eaa665ca39a4791d2328..7d29de872974c62e5c7f9ce6fec6c3b591a1d5e6 100644 (file)
@@ -2,12 +2,7 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-export interface Project {
-    name: string;
-    createdAt: string;
-    modifiedAt: string;
-    uuid: string;
-    ownerUuid: string;
-    href: string;
-    kind: string;
+import { Resource } from "./resource";
+
+export interface Project extends Resource {
 }