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