13 lines
447 B
C#
13 lines
447 B
C#
namespace PlotLine.Models;
|
|
|
|
public sealed class EmailSettings
|
|
{
|
|
public string SmtpServer { get; set; } = string.Empty;
|
|
public int Port { get; set; } = 465;
|
|
public string Username { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public bool EnableSsl { get; set; } = true;
|
|
public string FromAddress { get; set; } = string.Empty;
|
|
public string FromName { get; set; } = "PlotDirector";
|
|
}
|