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.
Sonarr/src/Sonarr.Http/Validation/EmptyCollectionValidator.cs

22 lines
607 B

using System.Collections.Generic;
using FluentValidation.Validators;
using NzbDrone.Common.Extensions;
namespace Sonarr.Http.Validation
{
public class EmptyCollectionValidator<T> : PropertyValidator
{
protected override string GetDefaultMessageTemplate() => "Collection Must Be Empty";
protected override bool IsValid(PropertyValidatorContext context)
{
if (context.PropertyValue == null)
{
return true;
}
return context.PropertyValue is IEnumerable<T> collection && collection.Empty();
}
}
}