export class DropdownOptions { displayKey: string; key: string; label: string; valueKey: string; options: any; required: boolean; requiredError: string; placeholder: string; multiple: boolean; constructor(config: any) { if (config) { this.options = config.options; this.displayKey = config.displayKey; this.key = config.key; this.label = config.label; this.valueKey = config.valueKey; this.required = config.required; this.requiredError = config.requiredError; this.placeholder = config.placeholder; this.multiple = config.multiple; } } }