12 lines
287 B
C#
12 lines
287 B
C#
namespace PARR.Mail.Settings
|
|
{
|
|
internal class MailSettings
|
|
{
|
|
public string Host { get; set; }
|
|
public int Port { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Password { get; set; }
|
|
public bool SSL { get; set; }
|
|
}
|
|
}
|