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/DogNzbSettings.cs

10 lines
278 B

namespace Ombi.Settings.Settings.Models.External
{
public class DogNzbSettings : Settings
{
public bool Enabled { get; set; }
public string ApiKey { get; set; }
public bool Movies { get; set; }
public bool TvShows { get; set; }
}
}