Files
mapo-core/MP-TAB3/Pages/Parameters.razor.cs
T
2024-02-26 20:05:47 +01:00

20 lines
412 B
C#

using global::Microsoft.AspNetCore.Components;
using MP.Data;
using MP.Data.DatabaseModels;
using MP.Data.Services;
using Newtonsoft.Json;
namespace MP_TAB3.Pages
{
public partial class Parameters
{
#region Protected Methods
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
}
#endregion Protected Methods
}
}