AuthorBuddy/Models/SmtpSettings.cs

14 lines
475 B
C#
Raw Normal View History

2026-06-21 07:52:03 +02:00
namespace AuthorBuddy.Web.Models;
public class SmtpSettings
{
public string Host { get; set; } = string.Empty;
public int Port { get; set; } = 587;
public string Username { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string FromAddress { get; set; } = string.Empty;
public string FromName { get; set; } = "Author Buddy";
public bool UseSsl { get; set; } = true;
public bool Enabled { get; set; }
}