using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Service.BookingSlot.Dto
{
///
/// 舱位合并请求结果
///
public class BookingSlotMergeResultDto
{
///
/// 舱位明细
///
public List slotDetailList { get; set; }
///
/// 集装箱合计统计
///
public string ctnStat { get; set; }
///
/// 重要提醒
///
public string importantNotes { get; set; }
}
}