using Microsoft.AspNetCore.Components;
using WebWindowTest.Models;
namespace WebWindowTest.Compo
{
public partial class EditOptionText
{
#region Public Properties
///
/// Opzione hardware text corrente
///
[Parameter]
public AGBOptionText CurrOpt { get; set; } = null!;
#endregion Public Properties
#region Private Properties
///
/// Metodo per aggiornare opzione hardware text corrente
///
private string CurrValue
{
get => CurrOpt.sValue;
}
#endregion Private Properties
}
}