11 lines
383 B
C#
11 lines
383 B
C#
namespace Infrastructure;
|
|
|
|
public class SmtpSettings
|
|
{
|
|
public string Host { get; init; } = string.Empty;
|
|
public int Port { get; init; } = int.MinValue;
|
|
public string From { get; init; } = string.Empty;
|
|
public bool EnableSsl { get; set; } = false;
|
|
public string UserName { get; init; } = string.Empty;
|
|
public string Password { get; init; } = string.Empty;
|
|
} |