using Microsoft.AspNetCore.Components; namespace MP_TAB3.Components { public partial class ShowProcessing { #region Public Properties [Parameter] public bool IsProcessing { get; set; } = false; [Parameter] public string Message { get; set; } = "ELABORAZIONE IN CORSO"; #endregion Public Properties } }