注册登录Demo

注册登录Demo
This commit is contained in:
ALEXTANG
2023-07-16 00:57:20 +08:00
parent c178f8bb75
commit c6ecb48944
17 changed files with 350 additions and 22 deletions

View 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; }
}