using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class BookingSlotSendEmailDto
{
///
/// 舱位主键组
///
public List ids { get; set; }
///
/// 是否默认使用用户个人邮箱发送
///
public bool usePersonalEmailSend { get; set; } = false;
}
}