12 lines
327 B
C#
12 lines
327 B
C#
namespace Api.Models.Settings
|
|
{
|
|
public class SmtpSettings
|
|
{
|
|
public string Host { get; set; } = "";
|
|
public int Port { get; set; } = 587;
|
|
public string Username { get; set; } = "";
|
|
public string Password { get; set; } = "";
|
|
public bool UseStartTls { get; set; } = true;
|
|
}
|
|
}
|