📄 passworddata.cs
字号:
namespace Imps.Client.Core.Password
{
using System;
using System.Drawing;
public class PasswordData
{
private string _certPicCode = string.Empty;
private PasswordFlag _flag = new PasswordFlag();
private Image _imgCertCode;
private string _mobileNo = string.Empty;
private string _password = string.Empty;
private string _picCertSessionId = string.Empty;
private string _smsValiCode = string.Empty;
private string _uriGetGeneralInfo = string.Empty;
private string _uriGetPic = string.Empty;
private string _uriGetSms = string.Empty;
private string _uriGetSysCfg = string.Empty;
private string _uriModifyPassword = string.Empty;
public string CertPicCode
{
get
{
return this._certPicCode;
}
set
{
this._certPicCode = value;
}
}
public PasswordFlag Flag
{
get
{
return this._flag;
}
set
{
this._flag = value;
}
}
public Image ImgCertCode
{
get
{
return this._imgCertCode;
}
set
{
this._imgCertCode = value;
}
}
public string MobileNo
{
get
{
return this._mobileNo;
}
set
{
this._mobileNo = value;
}
}
public string Password
{
get
{
return this._password;
}
set
{
this._password = value;
}
}
public string PicCertSessionId
{
get
{
return this._picCertSessionId;
}
set
{
this._picCertSessionId = value;
}
}
public string SmsValiCode
{
get
{
return this._smsValiCode;
}
set
{
this._smsValiCode = value;
}
}
public string UriGetGeneralInfo
{
get
{
return this._uriGetGeneralInfo;
}
set
{
this._uriGetGeneralInfo = value;
}
}
public string UriGetPic
{
get
{
return this._uriGetPic;
}
set
{
this._uriGetPic = value;
}
}
public string UriGetSms
{
get
{
return this._uriGetSms;
}
set
{
this._uriGetSms = value;
}
}
public string UriGetSysCfg
{
get
{
return this._uriGetSysCfg;
}
set
{
this._uriGetSysCfg = value;
}
}
public string UriModifyPassword
{
get
{
return this._uriModifyPassword;
}
set
{
this._uriModifyPassword = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -