X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/8cc7e7304d11fb7940a9c68092c7f614e4e5fcea..b595915f605850d59c39da9b2c75555cd3965a3b:/src/models/link.ts diff --git a/src/models/link.ts b/src/models/link.ts index 26cce6e8..da9dfd03 100644 --- a/src/models/link.ts +++ b/src/models/link.ts @@ -1,13 +1,18 @@ -import { Resource } from "./resource"; - // Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 -export interface Link extends Resource { +import { Resource } from "./resource"; + +export interface LinkResource extends Resource { headUuid: string; tailUuid: string; linkClass: string; name: string; properties: {}; } + +export enum LinkClass { + STAR = 'star', + TAG = 'tag' +} \ No newline at end of file