28 lines
559 B
C#
28 lines
559 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Massmailer.Shared.Model
|
|
{
|
|
public class SmtpSettings
|
|
{
|
|
public string Server { get; set; }
|
|
|
|
public int Port { get; set; }
|
|
|
|
public string SenderName { get; set; }
|
|
|
|
public string SenderEmail { get; set; }
|
|
|
|
public string Username { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
|
|
public bool UseSsl { get; set; }
|
|
|
|
public int MaxSendRate { get; set; }
|
|
}
|
|
}
|