using Microsoft.AspNetCore.Components; namespace MP_TAB3.Components { public partial class ProdStopMan { #region Public Properties [Parameter] public EventCallback 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 } }