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