personalgroupsearchresultview.cs

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

CS
75
字号
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 + =
减小字号Ctrl + -
显示快捷键?