WiFi Channel Settings.

This commit is contained in:
Robin Davies
2021-08-20 10:35:37 -04:00
parent 140f2abd39
commit f6aa331d77
40 changed files with 2409 additions and 597 deletions
+20
View File
@@ -0,0 +1,20 @@
export default class WifiChannel {
deserialize(input: any): WifiChannel {
this.channelId = input.channelId;
this.channelName = input.channelName;
return this;
}
static deserialize_array(input: any): WifiChannel[]
{
let result: WifiChannel[] = [];
for (let i = 0; i < input.length; ++i)
{
result.push(new WifiChannel().deserialize(input[i]));
}
return result;
}
channelId: string = "";
channelName: string = "";
};