using System; using System.Data; using System.Collections; using System.Collections.Generic; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.MvcShipping.Models.CompanyDef { [JsonObject] public class CompanyDef { #region private Fields private string _GID= String.Empty; private string _CORPID = String.Empty; private string _PORTLOADID = String.Empty; private string _PORTLOAD = String.Empty; private string _BLFRT = String.Empty; private string _AFRCARRIERID = String.Empty; private string _AFRAGENTID = String.Empty; private string _AFRETDTIME = String.Empty; #endregion #region Public Properties public string GID { get { return _GID; } set { _GID = value; } } public string CORPID { get { return _CORPID; } set { _CORPID = value; } } public string PORTLOADID { get { return _PORTLOADID; } set { _PORTLOADID = value; } } public string PORTLOAD { get { return _PORTLOAD; } set { _PORTLOAD = value; } } public string BLFRT { get { return _BLFRT; } set { _BLFRT = value; } } public string AFRCARRIERID { get { return _AFRCARRIERID; } set { _AFRCARRIERID = value; } } public string AFRAGENTID { get { return _AFRAGENTID; } set { _AFRAGENTID = value; } } public string AFRETDTIME { get { return _AFRETDTIME; } set { _AFRETDTIME = value; } } #endregion } }