1
0
mirror of synced 2025-01-29 03:25:47 +01:00
2024-03-16 17:46:06 +08:00

12 lines
298 B
C#

namespace TaikoWebUI.Pages;
public partial class Users
{
private DashboardResponse? response;
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
response = await Client.GetFromJsonAsync<DashboardResponse>("api/Dashboard");
}
}