25 lines
502 B
C#
25 lines
502 B
C#
using global::Microsoft.AspNetCore.Components;
|
|
using MP.Data.DatabaseModels;
|
|
|
|
namespace MP_TAB_SERV.Components
|
|
{
|
|
public partial class ProdStat
|
|
{
|
|
#region Public Properties
|
|
|
|
[Parameter]
|
|
public MappaStatoExpl? RecMSE { get; set; } = null;
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected override async Task OnParametersSetAsync()
|
|
{
|
|
await Task.Delay(1);
|
|
}
|
|
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |