refs #13535 Merge branch '13535-tree-component' into 13610-projects-hierarchy
[arvados-workbench2.git] / src / models / project.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 export interface Project {
6     name: string;
7     createdAt: string;
8     modifiedAt: string;
9     uuid: string;
10     ownerUuid: string;
11     href: string;
12     icon?: any;
13 }