This commit is contained in:
2026-01-19 14:10:20 +01:00
parent 836f866387
commit e8a50c7206
5 changed files with 16 additions and 8 deletions

View File

@ -0,0 +1,8 @@
namespace StandManager.Domain.DTO;
public class EmailConfig
{
public string From { get; set; }
public string ServerAddress { get; set; }
public string MailSplitChar { get; set; }
}