X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/973fce01f05a50d4aa0169a88281f20476b305b2..9e4b7889a99ff2f76d8029aef3a85c4620178ba3:/src/models/project.ts diff --git a/src/models/project.ts b/src/models/project.ts index 830621b440..7d29de8729 100644 --- a/src/models/project.ts +++ b/src/models/project.ts @@ -2,12 +2,7 @@ // // 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 } from "./resource"; + +export interface Project extends Resource { }