using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// BC或DRAFT下载请求
///
public class BCOrDraftRequestDto
{
///
/// 用户key
///
public string user_key { get; set; }
///
/// 用户secret
///
public string user_secret { get; set; }
///
/// 网站账号
///
public string web_user { get; set; }
///
/// 网站密码
///
public string web_psw { get; set; }
///
/// 单号(订舱编号)
///
public string bno { get; set; }
///
/// 是否解析,默认否
///
public bool is_parse { get; set; } = false;
}
}