Misc Sonarr Pulls

This commit is contained in:
Qstick
2017-10-07 23:54:13 -04:00
parent 4c916f9186
commit f8f988a083
48 changed files with 181 additions and 93 deletions
@@ -1,14 +1,17 @@
using System;
using System;
using NzbDrone.Core.Indexers;
using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Validation;
namespace NzbDrone.Core.Test.IndexerTests
{
public class TestIndexerSettings : IProviderConfig
public class TestIndexerSettings : IIndexerSettings
{
public NzbDroneValidationResult Validate()
{
throw new NotImplementedException();
}
public string BaseUrl { get; set; }
}
}