12 lines
455 B
C#
12 lines
455 B
C#
namespace Webshop.Application.DTOs.Email
|
|
{
|
|
public class EmailSettings
|
|
{
|
|
public string SmtpServer { get; set; } = "smtp.example.com";
|
|
public int Port { get; set; } = 587;
|
|
public string SenderName { get; set; } = "Mein Webshop";
|
|
public string SenderEmail { get; set; } = "noreply@meinwebshop.de";
|
|
public string Username { get; set; } = "user";
|
|
public string Password { get; set; } = "pass";
|
|
}
|
|
} |