checkout
This commit is contained in:
12
Webshop.Application/DTOs/Email/EmailSettings.cs
Normal file
12
Webshop.Application/DTOs/Email/EmailSettings.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user