DCSOlympus/client/src/aic/aicformationdescriptorcomponent.ts
2023-03-16 15:34:35 +01:00

18 lines
340 B
TypeScript

interface ComponentInterface {
"label" : string;
"value" : string;
}
export class AICFormationDescriptorComponent implements ComponentInterface {
label = "(not set)";
value = "(not set)";
constructor( value:any, label?:string ) {
this.label = label || "(not set)";
this.value = value;
}
}