13 lines
475 B
C#
13 lines
475 B
C#
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; }
|
|
}
|