mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-21 01:49:57 +02:00
34 lines
919 B
C#
34 lines
919 B
C#
using System;
|
|
using FluentValidation;
|
|
using FluentValidation.Results;
|
|
using NzbDrone.Core.Annotations;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Indexers.Omgwtfnzbs
|
|
{
|
|
public class OmgwtfnzbsSettingsValidator : AbstractValidator<OmgwtfnzbsSettings>
|
|
{
|
|
public OmgwtfnzbsSettingsValidator()
|
|
{
|
|
RuleFor(c => c.Username).NotEmpty();
|
|
RuleFor(c => c.ApiKey).NotEmpty();
|
|
}
|
|
}
|
|
|
|
public class OmgwtfnzbsSettings : IProviderConfig
|
|
{
|
|
private static readonly OmgwtfnzbsSettingsValidator Validator = new OmgwtfnzbsSettingsValidator();
|
|
|
|
[FieldDefinition(0, Label = "Username")]
|
|
public String Username { get; set; }
|
|
|
|
[FieldDefinition(1, Label = "API Key")]
|
|
public String ApiKey { get; set; }
|
|
|
|
public ValidationResult Validate()
|
|
{
|
|
return Validator.Validate(this);
|
|
}
|
|
}
|
|
}
|