Files
kou_zhaoxielou_shandong/口罩泄露定制款/Data/LoginData.cs

22 lines
466 B
C#
Raw Normal View History

2026-01-16 20:53:33 +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; }
}
}
}