⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crbttobuddysetting.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace Imps.Client.Core
{
    using System;

    public class CrbtToBuddySetting
    {
        private DateTime _endTime;
        private string _id;
        private DateTime _startTime;
        private string _target;
        private int _targetType;
        private int _timeType;
        private string _toneCode;

        public DateTime EndTime
        {
            get
            {
                return this._endTime;
            }
            set
            {
                this._endTime = value;
            }
        }

        public string Id
        {
            get
            {
                return this._id;
            }
            set
            {
                this._id = value;
            }
        }

        public DateTime StartTime
        {
            get
            {
                return this._startTime;
            }
            set
            {
                this._startTime = value;
            }
        }

        public string Target
        {
            get
            {
                return this._target;
            }
            set
            {
                this._target = value;
            }
        }

        public int TargetType
        {
            get
            {
                return this._targetType;
            }
            set
            {
                this._targetType = value;
            }
        }

        public int TimeType
        {
            get
            {
                return this._timeType;
            }
            set
            {
                this._timeType = value;
            }
        }

        public string ToneCode
        {
            get
            {
                return this._toneCode;
            }
            set
            {
                this._toneCode = value;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -