12 lines
188 B
C#
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; }
|
|
}
|
|
|
|
} |