userproperties.cs

来自「BugNET is an issue tracking and project 」· CS 代码 · 共 45 行

CS
45
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace BugNET.HttpModules
{
    /// <summary>
    /// A class to store the users properties fetched from an Active Directory
    /// </summary>
    public class UserProperties
    {
        private string _FirstName;
        private string _LastName;
        private string _Email;

        /// <summary>
        /// Gets or sets the name of the first.
        /// </summary>
        /// <value>The name of the first.</value>
        public string FirstName
        {
            get { return _FirstName; }
            set { _FirstName = value; }
        }
        /// <summary>
        /// Gets or sets the name of the last.
        /// </summary>
        /// <value>The name of the last.</value>
        public string LastName
        {
            get { return _LastName; }
            set { _LastName = value; }
        }
        /// <summary>
        /// Gets or sets the email.
        /// </summary>
        /// <value>The email.</value>
        public string Email
        {
            get { return _Email; }
            set { _Email = value; }
        }
    }
}

⌨️ 快捷键说明

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