using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Service.BookingOrder.Dto { /// /// 发送托书DTO /// public class SendTuoshuDto { /// /// 订舱ID /// public long BookingId { get; set; } /// /// 主题 /// public string Title { get; set; } /// /// 收件人 /// public string SendTo { get; set; } /// /// 抄送 /// public string CCTo { get; set; } /// /// 内容 /// public string Body { get; set; } /// /// 附件文件 /// public List FileList { get; set; } = new List(); } }