1
0
mirror of synced 2025-01-30 03:47:28 +01:00

12 lines
298 B
C#
Raw Normal View History

2024-03-16 17:46:06 +08:00
namespace TaikoWebUI.Pages;
2022-09-12 00:33:58 +08:00
public partial class Users
2022-09-12 00:33:58 +08:00
{
private DashboardResponse? response;
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
response = await Client.GetFromJsonAsync<DashboardResponse>("api/Dashboard");
}
}