15 lines
432 B
C#
15 lines
432 B
C#
namespace Service.AppSettingModel;
|
|
|
|
/// <summary>
|
|
/// 邮箱配置项
|
|
/// </summary>
|
|
public class EmailConfigItem
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public string ImapHost { get; set; } = string.Empty;
|
|
public int ImapPort { get; set; } = 993;
|
|
public bool UseSsl { get; set; } = true;
|
|
}
|