first commot
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 8s
Docker Build & Deploy / Deploy to Production (push) Successful in 7s

This commit is contained in:
孙诚
2025-12-25 11:20:56 +08:00
commit 4526cc6396
104 changed files with 11070 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace Service.AppSettingModel;
public class AISettings
{
public string Endpoint { get; set; } = string.Empty;
public string Key { get; set; } = string.Empty;
public string Model { get; set; } = string.Empty;
}

View 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;
}

View File

@@ -0,0 +1,11 @@
namespace Service.AppSettingModel;
/// <summary>
/// 邮箱设置配置
/// </summary>
public class EmailSettings
{
public int CheckIntervalMinutes { get; set; } = 1;
public EmailConfigItem[] SmtpList { get; set; } = [];
public string[] FilterFromAddresses { get; set; } = [];
}