X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/7adbd161925c71840bf4ddb799b87f1734e5af7e..e8d0331277033fea37a9fd73ffc781ffca8759f0:/src/models/project.ts diff --git a/src/models/project.ts b/src/models/project.ts index 830621b4..c44c8cc7 100644 --- a/src/models/project.ts +++ b/src/models/project.ts @@ -2,12 +2,12 @@ // // SPDX-License-Identifier: AGPL-3.0 -export interface Project { - name: string; - createdAt: string; - modifiedAt: string; - uuid: string; - ownerUuid: string; - href: string; - kind: string; +import { Resource as R } from "./resource"; +import { GroupResource, GroupClass } from "./group"; + +export interface Project extends R { +} + +export interface ProjectResource extends GroupResource { + groupClass: GroupClass.Project; }