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