mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
6c232b062c
Closes #2854
20 lines
452 B
C#
20 lines
452 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
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 IEnumerable<int> MultiLanguages { get; set; }
|
|
}
|
|
}
|