43 lines
885 B
C#
43 lines
885 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebWindowComplex.Models
|
|
{
|
|
public class AGBOptionText : ParametriOpzioni
|
|
{
|
|
#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
|
|
}
|
|
} |