src/app/core/models/extraction-set.ts
Contains information for an extraction set
Properties |
name |
name:
|
Type : string
|
Name of the set |
organ |
organ:
|
Type : string
|
Optional |
Organ that the extraction sites belong to |
sites |
sites:
|
Type : VisibilityItem[]
|
Extraction sites belonging to the organ in the extraction set |
import { VisibilityItem } from './visibility-item';
/**
* Contains information for an extraction set
*/
export interface ExtractionSet {
/** Name of the set */
name: string;
/** Organ that the extraction sites belong to */
organ?: string;
/** Extraction sites belonging to the organ in the extraction set */
sites: VisibilityItem[];
}