X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/4bbaf2a0cede89ea50d63d210c6631adc1970620..960e872ff250bc89950f33540806ea24bc4819bc:/src/models/project.ts diff --git a/src/models/project.ts b/src/models/project.ts index 830621b4..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; - kind: string; +import { GroupResource, GroupClass } from "./group"; + +export interface ProjectResource extends GroupResource { + groupClass: GroupClass.Project; }