Files
mapo-core/MP-TAB3/Components/ProdStopMan.razor.cs
T
Samuele Locatelli c8bb1065c7 Fix naming (maybe)
2023-12-18 11:40:46 +01:00

35 lines
756 B
C#

using Microsoft.AspNetCore.Components;
namespace MP_TAB3.Components
{
public partial class ProdStopMan
{
#region Public Properties
[Parameter]
public EventCallback<int> E_EventSelected { get; set; }
[Parameter]
public int IdxEvento { get; set; } = 0;
[Parameter]
public string objCss { get; set; } = "";
[Parameter]
public string objIcon { get; set; } = "";
[Parameter]
public string objTxt { get; set; } = "";
#endregion Public Properties
#region Protected Methods
protected async Task ReportSelected()
{
await E_EventSelected.InvokeAsync(IdxEvento);
}
#endregion Protected Methods
}
}