argos/dmp-frontend/src/app/form/fields/dropdown/field-dropdown.ts

9 lines
213 B
TypeScript

export class DropdownField {
controlType = 'dropdown';
options: {key: string, value: string}[] =[];
constructor(options: {} = {}){
this.options = options['options'] || [];
}
}