mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
14 lines
330 B
C#
14 lines
330 B
C#
using NzbDrone.Core.Validation;
|
|
|
|
namespace NzbDrone.Core.ThingiProvider
|
|
{
|
|
public class NullConfig : IProviderConfig
|
|
{
|
|
public static readonly NullConfig Instance = new NullConfig();
|
|
|
|
public NzbDroneValidationResult Validate()
|
|
{
|
|
return new NzbDroneValidationResult();
|
|
}
|
|
}
|
|
} |