Added collection service, reorganized components structure
[arvados.git] / src / models / project.ts
index d730bcdfd8c02ce676f368044dbf876367593a9c..7d29de872974c62e5c7f9ce6fec6c3b591a1d5e6 100644 (file)
@@ -2,8 +2,7 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-export interface Project {
-    name: string;
-    createdAt: string;
-    icon?: any;
+import { Resource } from "./resource";
+
+export interface Project extends Resource {
 }