Ombi/RequestPlex.Core/SettingModels/CouchPotatoSettings.cs
2016-03-01 22:50:41 +00:00

10 lines
No EOL
278 B
C#

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