applyjoingroupeventargs.cs

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

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

    public class ApplyJoinGroupEventArgs : EventArgs
    {
        private string _description;
        private PersonalGroup _group;
        private string _memberUri;
        private string _name;

        public ApplyJoinGroupEventArgs(string uri, string name, string description, PersonalGroup group)
        {
            this._memberUri = uri;
            this._name = name;
            this._description = description;
            this._group = group;
        }

        public string Description
        {
            get
            {
                return this._description;
            }
            internal set
            {
                this._description = value;
            }
        }

        public PersonalGroup Group
        {
            get
            {
                return this._group;
            }
            internal set
            {
                this._group = value;
            }
        }

        public string MemberUri
        {
            get
            {
                return this._memberUri;
            }
            internal set
            {
                this._memberUri = value;
            }
        }

        public string Name
        {
            get
            {
                return this._name;
            }
            internal set
            {
                this._name = value;
            }
        }
    }
}

⌨️ 快捷键说明

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