添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
namespace JNPF.Extras.Thirdparty.Email;
/// <summary>
/// 邮箱参数信息.
/// </summary>
public class MailParameterInfo
{
/// <summary>
/// POP3服务.
/// </summary>
public string POP3Host { get; set; }
/// <summary>
/// POP3端口.
/// </summary>
public int POP3Port { get; set; }
/// <summary>
/// SMTP服务.
/// </summary>
public string SMTPHost { get; set; }
/// <summary>
/// SMTP端口.
/// </summary>
public int SMTPPort { get; set; }
/// <summary>
/// 账户.
/// </summary>
public string Account { get; set; }
/// <summary>
/// 账户名称.
/// </summary>
public string AccountName { get; set; }
/// <summary>
/// 密码.
/// </summary>
public string Password { get; set; }
/// <summary>
/// SSL.
/// </summary>
public bool Ssl { get; set; } = false;
}