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