123456789101112131415161718 |
- using System.Collections.Generic;
- namespace Vinno.FIS.Sonopost.Settings.Config
- {
- internal class ServerSetting
- {
- public ServerInfoSetting DefaultServer { get; set; }
- public List<ServerInfoSetting> Servers { get; set; }
- public bool IsLoginWithAccountAndPassword { get; set; }
- public string UserName { get; set; }
- public string UserPassword { get; set; }
- public bool IsAutoLogin { get; set; }
- }
- }
|