Files
2024-02-26 20:17:35 +01:00

15 lines
299 B
C#

namespace MP_TAB3.Pages
{
public partial class Notes
{
#region Protected Methods
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
await ReloadData();
}
#endregion Protected Methods
}
}