1
0
mirror of synced 2024-11-24 06:50:15 +01:00
TaikoLocalServer/SharedProject/Models/User.cs
2023-09-09 21:58:20 +09:00

8 lines
157 B
C#

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