1
0
mirror of synced 2025-01-29 19:37:25 +01:00

10 lines
199 B
C#
Raw Normal View History

2022-09-05 00:52:58 +08: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-05 00:52:58 +08:00
}