using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 检索始发地、目的地城市信息 /// public class COSCOSearchLocationDto { /// /// 请求接口账户KEY /// public string userKey { get; set; } /// /// 请求接口账户密钥 /// public string userSecret { get; set; } /// /// 网站账户 /// public string webAccount { get; set; } /// /// 网站密码 /// public string webPassword { get; set; } /// /// 检索名称 /// public string name { get; set; } } }