using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class MSKAPIBookingResultDto
{
///
/// 回执代码
///
public int code { get; set; }
///
/// 回执消息
///
public string msg { get; set; }
///
/// 订舱回执详情
///
public object data { get; set; }
}
///
///
///
public class MSKAPIBookingResultDataDto
{
///
/// 唯一的uuid
///
public string requestAcknowledgementId { get; set; }
///
/// 订舱单号
///
public string bookingReference { get; set; }
}
}