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

📄 propertyclass.cs

📁 订阅报刊的企业员工用户希望通过企业的系统更方便、快捷地订阅报刊
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace 报刊管理.类
{
    class PropertyClass
    {
        private static string sendpopedomvalue;
        /// <summary>
        /// 传递用户权限
        /// </summary>
        public static string SendPopedomValue
        {
            set
            {
                sendpopedomvalue = value;
            }
            get
            {
                return sendpopedomvalue;
            }
        }

        private static string sendnamevalue;
        /// <summary>
        /// 传递登录人员账号
        /// </summary>
        public static string SendNameValue
        {
            set
            {
                sendnamevalue = value;
            }
            get
            {
                return sendnamevalue;
            }
        }

        private static string savepassword;
        /// <summary>
        /// 获取用户登录密码
        /// </summary>
        public static string SavePassword
        {
            set
            {
                savepassword = value;
            }
            get
            {
                return savepassword;
            }
        }
    }
}

⌨️ 快捷键说明

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