using System; using System.Data; using System.Collections; using System.Collections.Generic; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.MvcShipping.Models.Code_StlMode { [JsonObject] public class STLMODE { #region private Fields private string _stlcode= String.Empty; private string _stlname = String.Empty; #endregion #region Public Properties public string STLCODE { get { return _stlcode; } set { _stlcode = value; } } public string STLNAME { get { return _stlname; } set { _stlname = value; } } #endregion } }