mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
13 lines
No EOL
446 B
C#
13 lines
No EOL
446 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 EmailUsername { get; set; }
|
|
public string EmailPassword { get; set; }
|
|
public bool Enabled { get; set; }
|
|
}
|
|
} |