12345678910111213141516171819202122 |
- namespace Vinno.FIS.Sonopost.WebApi.Models
- {
- internal class ServerLoginInfoResult
- {
- public string QRCodeString { get; set; }
- public string UniqueId { get; set; }
- public string Address { get; set; }
- public int Port { get; set; }
- public string Account { get; set; }
- public string Password { get; set; }
- public bool IsLoginWithAccountAndPassword { get; set; }
- public bool IsExisted { get; set; }
- public string DongleId { get; set; }
- public bool IsLogged { get => !string.IsNullOrWhiteSpace(UniqueId); }
- public string VCloudServerName { get; set; }
- }
- }
|