mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 23:42:36 -07:00
14 lines
No EOL
495 B
C#
14 lines
No EOL
495 B
C#
namespace PlexRequests.Core.SettingModels
|
|
{
|
|
public class EmailNotificationSettings : Settings
|
|
{
|
|
public string EmailHost { get; set; }
|
|
public int EmailPort { get; set; }
|
|
public bool Ssl { get; set; }
|
|
public string RecipientEmail { get; set; }
|
|
public string EmailSender { get; set; }
|
|
public string EmailUsername { get; set; }
|
|
public string EmailPassword { get; set; }
|
|
public bool Enabled { get; set; }
|
|
}
|
|
} |