public string ToJson()
 {
     return(WifiProfileConfiguration.ToJsonString(DesiredList, this.ApplyPropertiesCombo.PropertyValue, this.reportPropertiesCombo.PropertyValue));
 }
 public void FromJson(JToken token)
 {
     WifiProfileConfiguration.ReadReportedFromJson(token, ReportedList);
 }
 public void AddProfile(WifiProfileConfiguration newProfile)
 {
     DesiredList.Add(newProfile);
 }