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.
Radarr/src/NzbDrone.Core/ImportLists/TMDb/List/TMDbListSettings.cs

33 lines
931 B

using FluentValidation;
using NzbDrone.Core.Annotations;
using NzbDrone.Core.Validation;
namespace NzbDrone.Core.ImportLists.TMDb.List
{
public class TMDbListSettingsValidator : TMDbSettingsBaseValidator<TMDbListSettings>
{
public TMDbListSettingsValidator()
{
RuleFor(c => c.ListId).Matches("^[1-9][0-9]*$").NotEmpty();
}
}
public class TMDbListSettings : TMDbSettingsBase<TMDbListSettings>
{
private static readonly TMDbListSettingsValidator Validator = new ();
public TMDbListSettings()
{
ListId = "";
}
[FieldDefinition(1, Label = "ListId", Type = FieldType.Textbox, HelpText = "TMDb Id of List to Follow")]
public string ListId { get; set; }
public override NzbDroneValidationResult Validate()
{
return new NzbDroneValidationResult(Validator.Validate(this));
}
}
}