yavsc/src/Yavsc.Server/Settings/SmtpSettings.cs

15 lines
321 B
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
namespace Yavsc
{
public class SmtpSettings
{
public string Host { get; set; }
public int Port { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string Domain { get; set; }
2016-05-17 18:22:18 +02:00
public bool EnableSSL { get; set; }
}
}