17 lines
365 B
C#
17 lines
365 B
C#
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
|
|
}
|
|
} |