This commit is contained in:
2023-02-19 00:43:43 +01:00
parent 9719a0c0fd
commit 1e66851113
146 changed files with 738 additions and 382 deletions

View File

@ -0,0 +1,11 @@
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; }
}
}