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

8 lines
157 B
C#
Raw Normal View History

2023-09-09 14:58:20 +02:00
namespace SharedProject.Models;
public class User
{
public string AccessCode { get; set; } = string.Empty;
public ulong Baid { get; set; }
}