export class CheckboxOptions { label: string; displayKey: string; required: boolean; requiredError: string; theme: string; options: any; constructor(config: any) { this.label = config.label; this.displayKey = config.displayKey; this.required = config.required; this.requiredError = config.requiredError; this.theme = config.theme; this.options = config.options; } }