using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.EDI
{
///
///
///
public class EmailApiDto
{
public string SendTo { get; set; }
public string Title { get; set; }
public string Body { get; set; }
public string SmtpConfig { get; set; } = "NOREPLAY";
public bool isCallback { get; set; } = false;
public List Attaches { get; set; }
}
public class AttachesInfo
{
public string AttachName { get; set; }
public string AttachContent { get; set; }
}
}