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.
DS7/DSWeb/Areas/MvcShipping/Models/MsOpSeae/OpSeaeEdiShipper.cs

88 lines
1.8 KiB
C#

2 years ago
using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.MvcShipping.Models.MsOpSeae
{
[JsonObject]
public class OpSeaeEdiShipper
{
private string _shippername = "";
public string SHIPPERNAME
{
get { return _shippername; }
set { _shippername = value; }
}
private string _addr1 = "";
public string ADDR1
{
get { return _addr1; }
set { _addr1 = value; }
}
private string _addr2 = "";
public string ADDR2
{
get { return _addr2; }
set { _addr2 = value; }
}
private string _addr3 = "";
public string ADDR3
{
get { return _addr3; }
set { _addr3 = value; }
}
private string _city = "";
public string CITY
{
get { return _city; }
set { _city = value; }
}
private string _postcode = "";
public string POSTCODE
{
get { return _postcode; }
set { _postcode = value; }
}
private string _countrycode = "";
public string COUNTRYCODE
{
get { return _countrycode; }
set { _countrycode = value; }
}
private string _province;
public string PROVINCE
{
get { return _province; }
set { _province = value; }
}
private string _attn = "";
public string ATTN
{
get { return _attn; }
set { _attn = value; }
}
private string _tel = "";
public string TEL
{
get { return _tel; }
set { _tel = value; }
}
}
}