mirror of https://github.com/certd/certd
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;
|
||
|
}
|
||
|
}
|