first commot
This commit is contained in:
14
Service/AppSettingModel/EmailConfigItem.cs
Normal file
14
Service/AppSettingModel/EmailConfigItem.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user