48 lines
922 B
C#
48 lines
922 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebWindowTest.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
|
|
}
|
|
} |