export class InputOption { label: string; value: string; constructor(label: string, value: string) { this.label = label; this.value = value; } }