export class TextAreaOptions { label: any; placeholder: string; rows: number; columns: number; maxLength: number; minLength: number; required: boolean; requiredError: string; constructor(config: any) { if (config) { this.label = config.label; this.rows = config.rows; this.columns = config.columns; this.placeholder = config.placeholder; this.maxLength = config.maxLength; this.minLength = config.minLength; this.required = config.required; this.requiredError = config.requiredError; } } }