11 lines
275 B
C#
11 lines
275 B
C#
namespace PrivaPub.Models.Email
|
|
{
|
|
public class EmailConfiguration
|
|
{
|
|
public string SmtpServer { get; set; }
|
|
public int SmtpPort { get; set; }
|
|
public bool UseSSL { get; set; }
|
|
public string SmtpUsername { get; set; }
|
|
public string SmtpPassword { get; set; }
|
|
}
|
|
} |