Ombi/PlexRequests.Core/SettingModels/EmailNotificationSettings.cs
2016-03-13 21:32:47 +00:00

13 lines
No EOL
462 B
C#

namespace PlexRequests.Core.SettingModels
{
public class EmailNotificationSettings : Settings
{
public string EmailHost { get; set; }
public int EmailPort { get; set; }
public bool EmailAuthentication { get; set; }
public string RecipientEmail { get; set; }
public string EmailUsername { get; set; }
public string EmailPassword { get; set; }
public bool Enabled { get; set; }
}
}