📄 userproperties.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -