src/app/core/models/ontology-selection.ts
Properties |
id |
id:
|
Type : string
|
label |
label:
|
Type : string
|
location |
location:
|
Type : OntologyTreeNode | undefined
|
import { OntologyTreeNode } from 'ccf-database';
export interface OntologySelection {
location: OntologyTreeNode | undefined;
id: string;
label: string;
}