12 lines
252 B
C#
12 lines
252 B
C#
namespace PostFundManagement.Domain.Configuration.Email;
|
|
|
|
public sealed class SmtpSettings
|
|
{
|
|
public Account? Credentials { get; set; }
|
|
|
|
public int Port { get; set; }
|
|
|
|
public string? Host { get; set; }
|
|
|
|
public bool UseSsl { get; set; }
|
|
} |