mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
15 lines
319 B
C#
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();
|
|
}
|
|
}
|
|
}
|