src/app/core/models/list-result.ts
Properties |
|
color |
color:
|
Type : string
|
Optional |
rank |
rank:
|
Type : number
|
Optional |
selected |
selected:
|
Type : boolean
|
tissueBlock |
tissueBlock:
|
Type : TissueBlockResult
|
import { TissueBlockResult } from 'ccf-database';
export interface ListResult {
selected: boolean;
color?: string;
tissueBlock: TissueBlockResult;
rank?: number;
}