You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/ThingiProvider/IProvider.cs

17 lines
506 B

using System;
using System.Collections.Generic;
using FluentValidation.Results;
11 years ago
namespace NzbDrone.Core.ThingiProvider
{
public interface IProvider
11 years ago
{
string Name { get; }
11 years ago
Type ConfigContract { get; }
ProviderMessage Message { get; }
IEnumerable<ProviderDefinition> DefaultDefinitions { get; }
ProviderDefinition Definition { get; set; }
ValidationResult Test();
object ConnectData(string stage, IDictionary<string, object> query);
11 years ago
}
}