mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
Small changes
This commit is contained in:
parent
58c9cc6776
commit
cc3d41aa9a
4 changed files with 60 additions and 6 deletions
|
@ -67,6 +67,7 @@
|
|||
<Compile Include="IRequestService.cs" />
|
||||
<Compile Include="ISettingsService.cs" />
|
||||
<Compile Include="SettingModels\AuthenticationSettings.cs" />
|
||||
<Compile Include="SettingModels\EmailNotificationSettings.cs" />
|
||||
<Compile Include="SettingModels\PlexSettings.cs" />
|
||||
<Compile Include="SettingModels\SonarrSettings.cs" />
|
||||
<Compile Include="SettingModels\SickRageSettings.cs" />
|
||||
|
|
13
PlexRequests.Core/SettingModels/EmailNotificationSettings.cs
Normal file
13
PlexRequests.Core/SettingModels/EmailNotificationSettings.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue