using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 预甩通知
///
public class RollingNominationNoticeDto
{
///
/// 预甩任务ID
///
public string taskId { get; set; }
///
/// 模板ID
///
public long templateId { get; set; }
///
/// 是否允许没有订单发送通知
///
public bool isAllowNoBooking { get; set; } = false;
///
/// 手工发送预甩邮件接收人
///
public string manualNoticeEmail { get; set; }
}
}