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