1
0
mirror of synced 2025-02-17 11:18:32 +01:00

12 lines
264 B
C#
Raw Permalink Normal View History

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
}