fix: Antenna Genius show only available antennas per band
This commit is contained in:
@@ -117,6 +117,7 @@ export namespace antgenius {
|
||||
export class Antenna {
|
||||
index: number;
|
||||
name: string;
|
||||
bands: number;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new Antenna(source);
|
||||
@@ -126,6 +127,7 @@ export namespace antgenius {
|
||||
if ('string' === typeof source) source = JSON.parse(source);
|
||||
this.index = source["index"];
|
||||
this.name = source["name"];
|
||||
this.bands = source["bands"];
|
||||
}
|
||||
}
|
||||
export class Status {
|
||||
|
||||
Reference in New Issue
Block a user