📄 user.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Common
{
public class User
{
private string uName;
private string uPwd;
private string uRemarks;
private string uAccountName;
private string uID;
public string UName { get { return uName; } set { uName = value; } }
public string UPwd { get { return uPwd; } set { uPwd = value; } }
public string URemarks { get { return uRemarks; } set { uRemarks = value; } }
public string UAccountName { get { return uAccountName; } set { uAccountName = value; } }
public string UID { get { return uID; } set { uID = value; } }
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -