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

15 lines
321 B
C#

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; }
public bool EnableSSL { get; set; }
}
}