ServerSetting.cs 461 B

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