blob: 21ef61a8a14e48c0e3bedb5aad6dcca724c957cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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;
}
}
|