mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
注册登录Demo
注册登录Demo
This commit is contained in:
32
DotNet/Logic/src/Model/AccountInfo.cs
Normal file
32
DotNet/Logic/src/Model/AccountInfo.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
namespace TEngine.Logic;
|
||||
|
||||
/// <summary>
|
||||
/// 账号信息
|
||||
/// </summary>
|
||||
public class AccountInfo : Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户唯一ID。
|
||||
/// </summary>
|
||||
public uint UID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户名。
|
||||
/// </summary>
|
||||
public string UserName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 密码。
|
||||
/// </summary>
|
||||
public string Password { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 渠道唯一ID。
|
||||
/// </summary>
|
||||
public uint SDKUID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否禁用账号。
|
||||
/// </summary>
|
||||
public bool Forbid { get; set; }
|
||||
}
|
Reference in New Issue
Block a user