* Maintain FaKrosno api to handle Hangfire
* Added checking of missing EdiCo based on EdiCoTranslate and send email every 30 minutes * Added Admin Scheduler view
This commit is contained in:
11
FaKrosnoApi/Models/EmailSettingsModel.cs
Normal file
11
FaKrosnoApi/Models/EmailSettingsModel.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace FaKrosnoApi.Models;
|
||||
|
||||
public class EmailSettingsModel
|
||||
{
|
||||
public string SmtpServer { get; set; }
|
||||
public int Port { get; set; }
|
||||
public string SenderEmail { get; set; }
|
||||
public string SenderPassword { get; set; }
|
||||
public string RecipientEmail { get; set; }
|
||||
public bool UseSsl { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user