blob: 21ef61a8a14e48c0e3bedb5aad6dcca724c957cb [file] [log] [blame]
export class ExternalComponentStatus {
component: string;
available: boolean;
metadata: any;
constructor(component: string, available: boolean, metadata: any) {
this.component = component;
this.available = available;
this.metadata = metadata;
}
}