Files
webwindowconfigurator/WebWindowComplex/Models/AGBOptionText.cs
T
Annamaria Sassi c7a151e530 - Inizio gestione opzioni hardware
- Aggiunta chiamata per opzioni hardware
- Aggiunto componente per AGBOptionCombo
2025-10-27 13:19:24 +01:00

43 lines
878 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebWindowComplex.Models
{
public class AGBOptionText : AGBOption
{
#region Public Constructors
public AGBOptionText(ParametriOpzioniParametri HdwOptionParam) : base(HdwOptionParam)
{
m_Type = HDWOPTIONTYPES.TEXT;
m_sValue = HdwOptionParam.ValoreCorrente;
}
#endregion Public Constructors
#region Public Properties
public string sValue
{
get
{
return m_sValue;
}
set
{
m_sValue = value;
}
}
#endregion Public Properties
#region Private Fields
private string m_sValue;
#endregion Private Fields
}
}