X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/eeb82d50816250cc6287928e6d958affa73880ee..47e0dc87fa82bac593c53518e556ba7c55410288:/src/models/project.ts diff --git a/src/models/project.ts b/src/models/project.ts index f4faf7d6..1373ca7d 100644 --- a/src/models/project.ts +++ b/src/models/project.ts @@ -2,12 +2,8 @@ // // SPDX-License-Identifier: AGPL-3.0 -export interface Project { - name: string; - createdAt: string; - modifiedAt: string; - uuid: string; - ownerUuid: string; - href: string; - icon?: any; +import { GroupResource, GroupClass } from "./group"; + +export interface ProjectResource extends GroupResource { + groupClass: GroupClass.Project; }