mirror of
https://github.com/certd/certd.git
synced 2026-04-05 07:20:56 +08:00
12 lines
191 B
TypeScript
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;
|
|
}
|
|
}
|