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

📄 groupmsgsetting.cs

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

    public class GroupMsgSetting
    {
        private Imps.Client.Core.SystemSetting _systemSetting;

        internal GroupMsgSetting(Imps.Client.Core.SystemSetting systemSetting)
        {
            this._systemSetting = systemSetting;
        }

        public override string ToString()
        {
            return base.ToString();
        }

        public int GroupCategoryVersion
        {
            get
            {
                return this._systemSetting.GetPropertyValue<int>("groupcategory-version", 0);
            }
        }

        public int MaxDailySMSTime
        {
            get
            {
                return this._systemSetting.GetPropertyValue<int>("max-daily-sms-time", 3);
            }
        }

        public int MaxGroupadminCount
        {
            get
            {
                return this._systemSetting.GetPropertyValue<int>("max-groupadmin-count", 3);
            }
        }

        public int MaxGroupuserCount
        {
            get
            {
                return this._systemSetting.GetPropertyValue<int>("max-groupuser-count", 150);
            }
        }

        public int MaxJoingroupCount
        {
            get
            {
                return this._systemSetting.GetPropertyValue<int>("max-joingroup-count", 10);
            }
        }

        public int MaxJoinGroupInviteCount
        {
            get
            {
                return this._systemSetting.GetPropertyValue<int>("max-joingroup-invite-count", 0x20);
            }
        }

        public int MaxMonthSMSTime
        {
            get
            {
                return this._systemSetting.GetPropertyValue<int>("max-month-sms-time", 20);
            }
        }

        public int MaxSuperadminCount
        {
            get
            {
                return this._systemSetting.GetPropertyValue<int>("max-superadmin-count", 2);
            }
        }

        public int SearchGroupPageSize
        {
            get
            {
                return this._systemSetting.GetPropertyValue<int>("searchgroup-pagesize", 20);
            }
        }
    }
}

⌨️ 快捷键说明

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