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/MsBaseInfo/StlMode.cs

43 lines
717 B
C#

2 years ago
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
}
}