You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
970 B
C#
45 lines
970 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Service.BookingOrder.Dto
|
|
{
|
|
/// <summary>
|
|
/// 发送托书DTO
|
|
/// </summary>
|
|
public class SendTuoshuDto
|
|
{
|
|
/// <summary>
|
|
/// 订舱ID
|
|
/// </summary>
|
|
public long BookingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主题
|
|
/// </summary>
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收件人
|
|
/// </summary>
|
|
public string SendTo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 抄送
|
|
/// </summary>
|
|
public string CCTo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 内容
|
|
/// </summary>
|
|
public string Body { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件文件
|
|
/// </summary>
|
|
public List<string> FileList { get; set; } = new List<string>();
|
|
}
|
|
}
|