* Added checking of missing EdiCo based on EdiCoTranslate and send email every 30 minutes * Added Admin Scheduler view
11 lines
318 B
C#
11 lines
318 B
C#
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; }
|
|
} |