mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 21:51:13 -07:00
12 lines
No EOL
407 B
C#
12 lines
No EOL
407 B
C#
namespace PlexRequests.Core.SettingModels
|
|
{
|
|
public class EmailNotificationSettings : Settings
|
|
{
|
|
public string EmailHost { get; set; }
|
|
public int EmailPort { get; set; }
|
|
public string RecipientEmail { get; set; }
|
|
public string EmailUsername { get; set; }
|
|
public string EmailPassword { get; set; }
|
|
public bool Enabled { get; set; }
|
|
}
|
|
} |