13 lines
446 B
C#
13 lines
446 B
C#
namespace Api.Models.Settings;
|
|
|
|
public sealed 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 bool UseStartTls { get; set; } = true;
|
|
public string FromEmail { get; set; } = "noreply@myai.ro";
|
|
public string ToEmail { get; set; } = string.Empty;
|
|
}
|