Small changes

This commit is contained in:
Jamie Rees 2016-03-13 21:32:47 +00:00
parent 58c9cc6776
commit cc3d41aa9a
4 changed files with 60 additions and 6 deletions

View file

@ -0,0 +1,13 @@
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; }
}
}