13 lines
240 B
C#
13 lines
240 B
C#
namespace LiteCharms.Models.Configuraton.Email;
|
|
|
|
public class SmtpSettings
|
|
{
|
|
public Account? Credentials { get; set; }
|
|
|
|
public int Port { get; set; }
|
|
|
|
public string? Host { get; set; }
|
|
|
|
public bool UseSsl { get; set; }
|
|
}
|