mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
f77a2feeef
* Stylecop Rules and Fixes
18 lines
408 B
C#
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; }
|
|
}
|
|
}
|