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.

61 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.EmailParse.Dtos
{
/// <summary>
/// 邮箱查询
/// </summary>
public class MailAccountQueryRespModel
{
/// <summary>
/// 邮箱账号
/// </summary>
public string MailAccount { get; set; }
/// <summary>
/// 发件显示名称
/// </summary>
public string ShowName { get; set; }
/// <summary>
/// 收件服务器
/// </summary>
public string ReceiveServer { get; set; }
/// <summary>
/// 使用IMAP
/// </summary>
public bool UseImap { get; set; }
/// <summary>
/// 收件端口
/// </summary>
public int ReceivePort { get; set; }
/// <summary>
/// 收件使用SSL
/// </summary>
public bool ReceiveSSL { get; set; }
/// <summary>
/// 发件服务器
/// </summary>
public string SmtpServer { get; set; }
/// <summary>
/// 发件端口
/// </summary>
public int SmtpPort { get; set; }
/// <summary>
/// 发件是使用SSL
/// </summary>
public bool SmtpSSL { get; set; }
}
}