📄 user.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
//该源码下载自www.51aspx.com(51aspx.com)
namespace SSOLab.SSOServer.Components
{
public class User
{
private string _id;
private string _username;
private string _password;
public string ID
{
get
{
return this._id;
}
set
{
this._id = value;
}
}
public string Username
{
get
{
return this._username;
}
set
{
this._username = value;
}
}
public string Password
{
get
{
return this._password;
}
set
{
this._password = value;
}
}
public User()
{
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -