More work on the settings

This commit is contained in:
Jamie Rees 2016-03-01 22:50:41 +00:00
parent 8c9bd41057
commit a00d5b69f2
14 changed files with 152 additions and 39 deletions

View file

@ -0,0 +1,10 @@
namespace RequestPlex.Core.SettingModels
{
public class CouchPotatoSettings : Settings
{
public string Ip { get; set; }
public int Port { get; set; }
public string ApiKey { get; set; }
public bool Enabled { get; set; }
}
}