SeemGen/Helpers/EmailSettings.cs

12 lines
288 B
C#

namespace BLAIzor.Helpers
{
public class SmtpSettings
{
public string Host { get; set; }
public int Port { get; set; }
public bool EnableSsl { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}