2022-09-05 00:52:58 +08:00
|
|
|
|
namespace SharedProject.Models;
|
|
|
|
|
|
|
|
|
|
public class User
|
|
|
|
|
{
|
|
|
|
|
public string AccessCode { get; set; } = string.Empty;
|
2023-10-16 10:38:27 +01:00
|
|
|
|
|
2022-09-05 00:52:58 +08:00
|
|
|
|
public uint Baid { get; set; }
|
2023-10-16 10:38:27 +01:00
|
|
|
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Salt { get; set; } = string.Empty;
|
2022-09-05 00:52:58 +08:00
|
|
|
|
}
|