From 9433d26e4de76083f04f4a41d4966452c091b5f7 Mon Sep 17 00:00:00 2001 From: jianghaiqing Date: Tue, 7 Mar 2023 10:20:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9EDI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/BookingOrder/Dto/EmailApiDto.cs | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Myshipping.Application/Service/BookingOrder/Dto/EmailApiDto.cs diff --git a/Myshipping.Application/Service/BookingOrder/Dto/EmailApiDto.cs b/Myshipping.Application/Service/BookingOrder/Dto/EmailApiDto.cs new file mode 100644 index 00000000..84c60e78 --- /dev/null +++ b/Myshipping.Application/Service/BookingOrder/Dto/EmailApiDto.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Myshipping.Application +{ + public class EmailApiDto + { + public string SendTo { get; set; } + + //public string CCTo { get; set; } + + public string Title { get; set; } + + public string Body { get; set; } + + //public string ShowName { get; set; } + + public string SmtpConfig { get; set; } = "SERVICE"; + + //public string Account { get; set; } + + //public string Password { get; set; } + + //public string Server { get; set; } + + //public string Port { get; set; } + + //public string UseSSL { get; set; } + + public bool isCallback { get; set; } = false; + + public List Attaches { get; set; } + } + + public class AttachesInfo + { + public string AttachName { get; set; } + + public string AttachContent { get; set; } + } +}