using Microsoft.AspNetCore.Components; using WebWindowComplex.Models; namespace WebWindowComplex.Compo { public partial class AreaSplit { #region Public Properties [Parameter] public List CurrSashList { get; set; } = null; [Parameter] public Splitted CurrSplitted { get; set; } = null; [Parameter] public List CurrSplittedList { get; set; } = null; [Parameter] public EventCallback EC_CopySash { get; set; } #endregion Public Properties #region Private Methods /// /// Sollevo evento richiesta copia sash /// /// private async Task RaiseCopySash(int indexCurrSash) { await EC_CopySash.InvokeAsync(indexCurrSash); } #endregion Private Methods } }