Lidarr/src/NzbDrone.Core/ThingiProvider/IProviderConfig.cs

9 lines
164 B
C#
Raw Normal View History

2013-10-01 17:13:40 +00:00
using FluentValidation.Results;
namespace NzbDrone.Core.ThingiProvider
{
public interface IProviderConfig
{
ValidationResult Validate();
}
}