yavsc/Yavsc/Settings/SmtpSettings.cs

12 lines
188 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 bool EnableSSL { get; set; }
}
}