X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/28bb06ae7b9983da793f2459c5cc3e8debd71949..75b209b2cbd37e3510fd726e737fa5457a6a8d77:/src/models/project.ts diff --git a/src/models/project.ts b/src/models/project.ts index 83fb59bd3e..7d29de8729 100644 --- a/src/models/project.ts +++ b/src/models/project.ts @@ -2,11 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -export interface Project { - name: string; - createdAt: string; - modifiedAt: string; - uuid: string; - ownerUuid: string; - href: string; +import { Resource } from "./resource"; + +export interface Project extends Resource { }