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

📄 personalgroupsearchresultview.cs

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

    public class PersonalGroupSearchResultView
    {
        private string _groupCategory;
        private string _groupID;
        private string _groupMemberCount;
        private string _groupName;
        private string _verifyMethod;

        public string GroupCategory
        {
            get
            {
                return this._groupCategory;
            }
            set
            {
                this._groupCategory = value;
            }
        }

        public string GroupID
        {
            get
            {
                return this._groupID;
            }
            set
            {
                this._groupID = value;
            }
        }

        public string GroupMemberCount
        {
            get
            {
                return this._groupMemberCount;
            }
            set
            {
                this._groupMemberCount = value;
            }
        }

        public string GroupName
        {
            get
            {
                return this._groupName;
            }
            set
            {
                this._groupName = value;
            }
        }

        public string VerifyMethod
        {
            get
            {
                return this._verifyMethod;
            }
            set
            {
                this._verifyMethod = value;
            }
        }
    }
}

⌨️ 快捷键说明

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