Lidarr/src/NzbDrone.Core.Test/IndexerTests/TestIndexerSettings.cs

18 lines
408 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 int? EarlyReleaseLimit { get; set; }
}
}