添加项目文件。

This commit is contained in:
xyy
2026-02-07 10:07:45 +08:00
parent 26de2ec21a
commit 8cbdb7abad
32 changed files with 8530 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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; }
}
}
}