1
0
mirror of synced 2024-11-24 06:50:15 +01:00
TaikoLocalServer/SharedProject/Models/User.cs
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;
}