export class ComboBoxOptions { label: any; placeholder: string; maxLength: number; displayKey: string; required: boolean; requiredError: string; constructor(config: any) { if (config) { this.label = config.label; this.placeholder = config.placeholder; this.maxLength = config.maxLength; this.displayKey = config.displayKey; this.required = config.required; this.requiredError = config.requiredError; } } }