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

📄 applyjoingroupeventargs.cs

📁 破解的飞信源代码
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -