using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LYFZ.CloudServerData.Model { public class CloudLoginInfo { public CloudLoginInfo() { } string _EnterpriseID = ""; /// /// 企业ID /// public string EnterpriseID { get { return _EnterpriseID; } set { _EnterpriseID = value; } } long _CloudServerID = 0; /// /// 托管服务器ID /// public long CloudServerID { get { return _CloudServerID; } set { _CloudServerID = value; } } string _CloudServerIP = ""; /// /// 托管服务器IP /// public string CloudServerIP { get { return _CloudServerIP; } set { _CloudServerIP = value; } } ushort _SeverPort = 0; /// /// 托管理服务器端口 /// public ushort SeverPort { get { return _SeverPort; } set { _SeverPort = value; } } string _VerificationCode = ""; /// /// 验证码 /// public string VerificationCode { get { return _VerificationCode; } set { _VerificationCode = value; } } List _DongleDomainList = new List(); /// /// 加密锁域名集合 /// public List DongleDomainList { get { return _DongleDomainList; } set { _DongleDomainList = value; } } } }