167 lines
2.8 KiB
C#
167 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Chat.Framework.WXSdk.IPAD
|
|
{
|
|
class WxQrcode
|
|
{
|
|
private int _CheckTime;
|
|
private int _Status;
|
|
private string _Username;
|
|
private string _Password;
|
|
private string _HeadImgUrl;
|
|
private string _Nickname;
|
|
private int _ExpiredTime;
|
|
private string _Uuid;
|
|
private byte[] _ImgBuf;
|
|
private byte[] _NotifyKey;
|
|
private byte[] _RandomKey;
|
|
|
|
public int CheckTime
|
|
{
|
|
get
|
|
{
|
|
return _CheckTime;
|
|
}
|
|
|
|
set
|
|
{
|
|
_CheckTime = value;
|
|
}
|
|
}
|
|
|
|
public int Status
|
|
{
|
|
get
|
|
{
|
|
return _Status;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Status = value;
|
|
}
|
|
}
|
|
|
|
public string Username
|
|
{
|
|
get
|
|
{
|
|
return _Username;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Username = value;
|
|
}
|
|
}
|
|
|
|
public string Password
|
|
{
|
|
get
|
|
{
|
|
return _Password;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Password = value;
|
|
}
|
|
}
|
|
|
|
public string HeadImgUrl
|
|
{
|
|
get
|
|
{
|
|
return _HeadImgUrl;
|
|
}
|
|
|
|
set
|
|
{
|
|
_HeadImgUrl = value;
|
|
}
|
|
}
|
|
|
|
public string Nickname
|
|
{
|
|
get
|
|
{
|
|
return _Nickname;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Nickname = value;
|
|
}
|
|
}
|
|
|
|
public int ExpiredTime
|
|
{
|
|
get
|
|
{
|
|
return _ExpiredTime;
|
|
}
|
|
|
|
set
|
|
{
|
|
_ExpiredTime = value;
|
|
}
|
|
}
|
|
|
|
public string Uuid
|
|
{
|
|
get
|
|
{
|
|
return _Uuid;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Uuid = value;
|
|
}
|
|
}
|
|
|
|
public byte[] ImgBuf
|
|
{
|
|
get
|
|
{
|
|
return _ImgBuf;
|
|
}
|
|
|
|
set
|
|
{
|
|
_ImgBuf = value;
|
|
}
|
|
}
|
|
|
|
public byte[] NotifyKey
|
|
{
|
|
get
|
|
{
|
|
return _NotifyKey;
|
|
}
|
|
|
|
set
|
|
{
|
|
_NotifyKey = value;
|
|
}
|
|
}
|
|
|
|
public byte[] RandomKey
|
|
{
|
|
get
|
|
{
|
|
return _RandomKey;
|
|
}
|
|
|
|
set
|
|
{
|
|
_RandomKey = value;
|
|
}
|
|
}
|
|
}
|
|
}
|