namespace Email.Models.Settings; public sealed class SmtpSettings { public string Host { get; set; } = ""; public int Port { get; set; } = 587; public string Username { get; set; } = ""; public string Password { get; set; } = ""; public bool UseStartTls { get; set; } = true; }