ServerSetting.cs 483 B

12345678910111213141516171819
  1. using FISLib.Connect;
  2. using System.Collections.Generic;
  3. namespace Vinno.FIS.Sonopost.Features.Config
  4. {
  5. internal class ServerSetting
  6. {
  7. public ServerInfoSetting DefaultServer { get; set; }
  8. public List<ServerInfoSetting> Servers { get; set; }
  9. public bool IsLoginWithAccountAndPassword { get; set; }
  10. public string UserName { get; set; }
  11. public string UserPassword { get; set; }
  12. public bool IsAutoLogin { get; set; }
  13. }
  14. }