You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
813 B
C#

using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.CommMng.Models
{
[JsonObject]
public class CtnRefModel
{
#region private Fields
private string _ctnCode = String.Empty;
private string _ctnName = String.Empty;
private string _codeAndName = String.Empty;
#endregion
#region Public Properties
public string CtnCode
{
get { return _ctnCode; }
set { _ctnCode = value; }
}
public string CtnName
{
get { return _ctnName; }
set { _ctnName = value; }
}
public string CodeAndName
{
get { return _codeAndName; }
set { _codeAndName = value; }
}
#endregion
}
}