1
0
mirror of synced 2025-02-04 21:55:30 +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();
}