File

src/app/core/models/extraction-set.ts

Description

Contains information for an extraction set

Index

Properties

Properties

name
name: string
Type : string

Name of the set

organ
organ: string
Type : string
Optional

Organ that the extraction sites belong to

sites
sites: VisibilityItem[]
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[];
}

results matching ""

    No results matching ""