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

10 lines
197 B
TypeScript

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