NetworkSetting.cs 408 B

1234567891011121314151617
  1. namespace Vinno.FIS.Sonopost.Settings.Config
  2. {
  3. internal class NetworkSetting
  4. {
  5. public bool NeedDoubleNetwork { get; set; }
  6. public string OutsideNetworkMacAddress { get; set; }
  7. public string WifiName { get; set; }
  8. public string WifiPassword { get; set; }
  9. public string WifiMacAddress { get; set; }
  10. public bool IsAutoConnect { get; set; }
  11. }
  12. }