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.
19 lines
473 B
19 lines
473 B
using System.Collections.Generic;
|
|
using FluentValidation.Results;
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
namespace Prowlarr.Api.V1
|
|
{
|
|
public class ProviderTestAllResult
|
|
{
|
|
public int Id { get; set; }
|
|
public bool IsValid => ValidationFailures.Empty();
|
|
public List<ValidationFailure> ValidationFailures { get; set; }
|
|
|
|
public ProviderTestAllResult()
|
|
{
|
|
ValidationFailures = new List<ValidationFailure>();
|
|
}
|
|
}
|
|
}
|