1
0
mirror of synced 2025-03-01 16:11:04 +01:00
2023-10-16 10:38:27 +01:00

12 lines
264 B
C#

namespace SharedProject.Models;
public class User
{
public string AccessCode { get; set; } = string.Empty;
public uint Baid { get; set; }
public string Password { get; set; } = string.Empty;
public string Salt { get; set; } = string.Empty;
}