1
0
mirror of synced 2025-01-28 02:45:54 +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; }
}