addbuddyapplicationeventargs.cs

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

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

    public class AddBuddyApplicationEventArgs : EventArgs
    {
        private string _desc;
        private bool _isByMobileNo;
        private DateTime _time;
        private string _uri;

        public AddBuddyApplicationEventArgs(string uri, bool isByMobileNo, DateTime time, string desc)
        {
            this._uri = uri;
            this._isByMobileNo = isByMobileNo;
            this._time = time;
            this._desc = desc;
        }

        public string Desc
        {
            get
            {
                return this._desc;
            }
            internal set
            {
                this._desc = value;
            }
        }

        public bool IsByMobileNo
        {
            get
            {
                return this._isByMobileNo;
            }
            internal set
            {
                this._isByMobileNo = value;
            }
        }

        public DateTime Time
        {
            get
            {
                return this._time;
            }
            internal set
            {
                this._time = value;
            }
        }

        public string Uri
        {
            get
            {
                return this._uri;
            }
            internal set
            {
                this._uri = value;
            }
        }
    }
}

⌨️ 快捷键说明

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