mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -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();
|
|
}
|
|
}
|
|
}
|