1
0
mirror of synced 2025-01-28 02:45:54 +01:00
2023-11-11 23:12:26 +00:00

8 lines
156 B
C#

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