055c22cfeabe89adf593fb4e4e8e435a7ea0006d
[arvados-workbench2.git] / src / views-components / project-explorer / project-explorer-item.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 export interface ProjectExplorerItem {
6     uuid: string;
7     name: string;
8     type: string;
9     owner: string;
10     lastModified: string;
11     fileSize?: number;
12     status?: string;
13 }