43 lines
809 B
C#
43 lines
809 B
C#
|
|
namespace WebWindowComplex.Models
|
|
{
|
|
public class AGBOptionParameter
|
|
{
|
|
#region Public Constructors
|
|
|
|
public AGBOptionParameter(string sValue, string sDescription)
|
|
{
|
|
m_sValue = sValue;
|
|
m_sDescription = sDescription;
|
|
}
|
|
|
|
#endregion Public Constructors
|
|
|
|
#region Public Properties
|
|
|
|
public string sDescription
|
|
{
|
|
get
|
|
{
|
|
return m_sDescription;
|
|
}
|
|
}
|
|
|
|
public string sValue
|
|
{
|
|
get
|
|
{
|
|
return m_sValue;
|
|
}
|
|
}
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Private Fields
|
|
|
|
private string m_sDescription;
|
|
private string m_sValue;
|
|
|
|
#endregion Private Fields
|
|
}
|
|
} |