Ombi/PlexRequests.Core/SettingModels/EmailNotificationSettings.cs
tidusjar b9a886d5dc Added first implimentation of the Notification Service #8
Added tests to cover the notification service
2016-03-17 13:32:58 +00:00

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; }
}
}