ServerLoginInfoResult.cs 656 B

12345678910111213141516171819202122
  1. namespace Vinno.FIS.Sonopost.WebApi.Models
  2. {
  3. internal class ServerLoginInfoResult
  4. {
  5. public string QRCodeString { get; set; }
  6. public string UniqueId { get; set; }
  7. public string Address { get; set; }
  8. public int Port { get; set; }
  9. public string Account { get; set; }
  10. public string Password { get; set; }
  11. public bool IsLoginWithAccountAndPassword { get; set; }
  12. public bool IsExisted { get; set; }
  13. public string DongleId { get; set; }
  14. public bool IsLogged { get => !string.IsNullOrWhiteSpace(UniqueId); }
  15. public string VCloudServerName { get; set; }
  16. }
  17. }