PlotDirector/PlotLine/Models/EmailSettings.cs
2026-06-06 19:33:09 +01:00

13 lines
452 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; } = "PlotWeaver Studio";
}