using FISLib.Connect; using System.Collections.Generic; namespace Vinno.FIS.Sonopost.Features.Config { internal class ServerSetting { public ServerInfoSetting DefaultServer { get; set; } public List Servers { get; set; } public bool IsLoginWithAccountAndPassword { get; set; } public string UserName { get; set; } public string UserPassword { get; set; } public bool IsAutoLogin { get; set; } } }