Create Link model and service
[arvados-workbench2.git] / src / models / link.ts
1 import { Resource } from "./resource";
2
3 // Copyright (C) The Arvados Authors. All rights reserved.
4 //
5 // SPDX-License-Identifier: AGPL-3.0
6
7 export interface Link extends Resource {
8     headUuid: string;
9     tailUuid: string;
10     linkClass: string;
11     name: string;
12     properties: {};
13 }