Files
paoxiaoqi/Data/LoginData.cs

22 lines
475 B
C#
Raw Normal View History

2026-01-16 20:55:07 +08:00
namespace
{
public class LoginData
{
static string _userName = "";
public string UserName
{
get { return _userName; }
set { _userName = value; }
}
//登陆权限
static int _userPower = 0;//0为普通用户1为管理员
public int UserPower
{
get { return _userPower; }
set { _userPower = value; }
}
}
}