export class InputUnitOptions { label: any; placeholder: string; required: boolean; requiredError: string; options: any; type: string; constructor(config: any) { if (config) { this.options = config.options; this.label = config.label; this.placeholder = config.placeholder; this.required = config.required; this.requiredError = config.requiredError; this.type = config.type; } } }