50d65eebaa
- renaming classi gestione DbModels in - spostamento anagrafica flussi da auth a generale
25 lines
492 B
C#
25 lines
492 B
C#
using global::Microsoft.AspNetCore.Components;
|
|
using MP.Data.DbModels;
|
|
|
|
namespace MP_TAB3.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
|
|
}
|
|
} |