1
0
mirror of synced 2024-11-28 00:20:53 +01:00
TaikoLocalServer/SharedProject/Models/Responses/DashboardResponse.cs
2023-09-09 21:58:20 +09:00

6 lines
131 B
C#

namespace SharedProject.Models.Responses;
public class DashboardResponse
{
public List<User> Users { get; set; } = new();
}