Blame view

netcore/src/Infrastructure/NCC.Expand.Thirdparty/Email/Model/MailAccount.cs 1 KB
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  using NCC.Dependency;
  
  namespace NCC.Expand.Thirdparty.Email.Model
  {
      [SuppressSniffer]
      public class MailAccount
      {
          /// <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;
      }
  }