1
0
mirror of synced 2024-12-18 09:25:56 +01:00
TaikoLocalServer/SharedProject/Models/User.cs
shiibe 510a93c1aa Users api optimizations
* Moves the logic to attach user settings to the server
* Adds pagination to users request
2024-06-05 11:33:37 -04:00

12 lines
262 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; }
public UserSetting UserSetting { get; set; } = new();
}