passwordflag.cs

来自「破解的飞信源代码」· CS 代码 · 共 88 行

CS
88
字号
namespace Imps.Client.Core.Password
{
    using System;

    public class PasswordFlag
    {
        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 + =
减小字号Ctrl + -
显示快捷键?