1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00
Files
Sonarr/src/NzbDrone.Core.Test/IndexerTests/TestIndexerSettings.cs
T

15 lines
319 B
C#

using System;
using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Validation;
namespace NzbDrone.Core.Test.IndexerTests
{
public class TestIndexerSettings : IProviderConfig
{
public NzbDroneValidationResult Validate()
{
throw new NotImplementedException();
}
}
}