📄 provsionflag.cs
字号:
namespace Imps.Client.Core
{
using System;
public class ProvsionFlag
{
private bool _AgreementRecived;
private bool _certPicRecived;
private bool _isOldProfileRetrived;
private bool _SmsRequestSended;
private bool _SysCfgInited;
private bool _SysCfgRefreshed;
public bool AgreementRecived
{
get
{
return this._AgreementRecived;
}
set
{
this._AgreementRecived = value;
}
}
public bool CertPicRecived
{
get
{
return this._certPicRecived;
}
set
{
this._certPicRecived = value;
}
}
public bool IsOldProfileRetrived
{
get
{
return this._isOldProfileRetrived;
}
set
{
this._isOldProfileRetrived = value;
}
}
public bool SmsRequestSended
{
get
{
return this._SmsRequestSended;
}
set
{
this._SmsRequestSended = value;
}
}
public bool SysCfgInited
{
get
{
return this._SysCfgInited;
}
set
{
this._SysCfgInited = value;
}
}
public bool SysCfgRefreshed
{
get
{
return this._SysCfgRefreshed;
}
set
{
this._SysCfgRefreshed = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -