certd/packages/libs/lib-server/src/basic/enum-item.ts

12 lines
191 B
TypeScript

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