1
0
mirror of synced 2024-11-28 00:20:53 +01:00
TaikoLocalServer/SharedProject/Models/User.cs

10 lines
199 B
C#
Raw Normal View History

2022-09-04 18:52:58 +02:00
namespace SharedProject.Models;
public class User
{
public uint Baid { get; set; }
public List<string> AccessCodes { get; set; } = new();
public bool IsAdmin { get; set; }
2022-09-04 18:52:58 +02:00
}