src/app/core/models/option_type.ts
Properties |
| id |
id:
|
Type : string
|
|
Defined in src/app/core/models/option_type.ts:2
|
| name |
name:
|
Type : string
|
|
Defined in src/app/core/models/option_type.ts:3
|
| position |
position:
|
Type : string
|
|
Defined in src/app/core/models/option_type.ts:5
|
| presentation |
presentation:
|
Type : string
|
|
Defined in src/app/core/models/option_type.ts:4
|
export class OptionType {
id: string;
name: string;
presentation: string;
position: string;
}