You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Settings/Settings/Models/External/CouchPotatoSettings.cs

13 lines
394 B

using Ombi.Core.Settings.Models.External;
namespace Ombi.Settings.Settings.Models.External
{
public class CouchPotatoSettings : ExternalSettings
{
public bool Enabled { get; set; }
public string ApiKey { get; set; }
public string DefaultProfileId { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}