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
806 B
C#
40 lines
806 B
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class VoyRefModel
|
|
{
|
|
#region private Fields
|
|
|
|
private string _voyCode = String.Empty;
|
|
private string _voyName = String.Empty;
|
|
private string _codeAndName = String.Empty;
|
|
|
|
#endregion
|
|
|
|
#region Public Properties
|
|
|
|
public string VoyCode
|
|
{
|
|
get { return _voyCode; }
|
|
set { _voyCode = value; }
|
|
}
|
|
public string VoyName
|
|
{
|
|
get { return _voyName; }
|
|
set { _voyName = value; }
|
|
}
|
|
public string CodeAndName
|
|
{
|
|
get { return _codeAndName; }
|
|
set { _codeAndName = value; }
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|