namespace Myshipping.Application.EDI.Dtos
{
public class BookingHelperBaseModel
{
///
/// 用户key
///
public string userKey { get; set; }
///
/// 用户secret
///
public string userSecret { get; set; }
///
/// 网站账户
///
public string webAccount { get; set; }
///
/// 网站密码
///
public string webPassword { get; set; }
///
/// 上传类型
///
public string uploadType { get; set; }
///
/// 关联订舱信息
///
public object mark { get; set; }
}
}