Merge branch 'master'
[arvados-workbench2.git] / src / models / tag.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { LinkResource } from "./link";
6
7 export interface TagResource extends LinkResource {
8     tailUuid: TagTailType;
9     properties: TagProperty;
10 }
11
12 export interface TagProperty {
13     key: string;
14     value: string;
15 }
16
17 export enum TagTailType {
18     COLLECTION = 'Collection',
19     JOB = 'Job'
20 }