12 lines
298 B
C#
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");
|
|
}
|
|
} |