X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0dbd184178c1016a19828fa80df9f91dec907993..6ee23f0a48cce527596ef1f260b40a71618326a5:/src/models/project.ts diff --git a/src/models/project.ts b/src/models/project.ts index 830621b440..c44c8cc797 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; }