This commit is contained in:
2026-05-28 11:09:07 +02:00
parent a8b7622667
commit d3c9982c66
8 changed files with 380 additions and 200 deletions
+2
View File
@@ -411,6 +411,7 @@ export namespace main {
band: string;
mode: string;
country?: string;
continent?: string;
status: string;
static createFrom(source: any = {}) {
@@ -423,6 +424,7 @@ export namespace main {
this.band = source["band"];
this.mode = source["mode"];
this.country = source["country"];
this.continent = source["continent"];
this.status = source["status"];
}
}