1
0
mirror of synced 2025-01-27 00:13:39 +01:00

10 lines
199 B
C#

namespace SharedProject.Models;
public class User
{
public uint Baid { get; set; }
public List<string> AccessCodes { get; set; } = new();
public bool IsAdmin { get; set; }
}