mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
18 lines
447 B
C#
18 lines
447 B
C#
using System;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.Validation;
|
|
|
|
namespace NzbDrone.Core.Test.IndexerTests
|
|
{
|
|
public class TestIndexerSettings : IIndexerSettings
|
|
{
|
|
public NzbDroneValidationResult Validate()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string BaseUrl { get; set; }
|
|
public IndexerBaseSettings BaseSettings { get; set; } = new IndexerBaseSettings();
|
|
}
|
|
}
|