Add presets method to WorkflowService
[arvados.git] / src / models / link.ts
index 9d1711d8316c3e327d1f8e2edf1b59cd267a852c..c9e085be49ac34e535c34e73abae9d0d63ee13cf 100644 (file)
@@ -3,17 +3,19 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import { Resource } from "./resource";
+import { TagProperty } from "~/models/tag";
 
 export interface LinkResource extends Resource {
     headUuid: string;
     tailUuid: string;
     linkClass: string;
     name: string;
-    properties: {};
+    properties: TagProperty;
 }
 
 export enum LinkClass {
     STAR = 'star',
     TAG = 'tag',
     PERMISSION = 'permission',
+    PRESET = 'preset',
 }
\ No newline at end of file