src/app/core/models/classification.ts
Properties |
| position |
position:
|
Type : number
|
|
Defined in src/app/core/models/classification.ts:5
|
| taxon |
taxon:
|
Type : Taxon
|
|
Defined in src/app/core/models/classification.ts:6
|
| taxon_id |
taxon_id:
|
Type : number
|
|
Defined in src/app/core/models/classification.ts:4
|
import { Taxon } from './taxon';
export class Classification {
taxon_id: number;
position: number;
taxon: Taxon;
}