Files
yavsc/Yavsc.Server/Settings/SmtpSettings.cs
2018-05-02 04:09:51 +02:00

12 lines
188 B
C#

namespace Yavsc
{
public class SmtpSettings
{
public string Host { get; set; }
public int Port { get; set; }
public bool EnableSSL { get; set; }
}
}