1234567891011121314151617 |
- namespace Vinno.FIS.Sonopost.Settings.Config
- {
- internal class NetworkSetting
- {
- public bool NeedDoubleNetwork { get; set; }
- public string OutsideNetworkMacAddress { get; set; }
- public string WifiName { get; set; }
- public string WifiPassword { get; set; }
- public string WifiMacAddress { get; set; }
- public bool IsAutoConnect { get; set; }
- }
- }
|