mirror of
https://github.com/certd/certd.git
synced 2026-04-14 12:30:54 +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;
|
||
|
|
}
|
||
|
|
}
|