1
0
mirror of synced 2024-12-18 09:25:56 +01:00
TaikoLocalServer/SharedProject/Models/User.cs

8 lines
156 B
C#
Raw Normal View History

2022-09-04 18:52:58 +02:00
namespace SharedProject.Models;
public class User
{
public string AccessCode { get; set; } = string.Empty;
public uint Baid { get; set; }
}