1
0
mirror of synced 2024-11-24 06:50:15 +01:00
TaikoLocalServer/SharedProject/Models/Responses/DashboardResponse.cs
2022-09-05 00:52:58 +08:00

6 lines
131 B
C#

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