Files
Prowlarr-Prowlarr/src/Prowlarr.Api.V1/ProviderTestAllResult.cs
2020-10-18 04:18:35 -04:00

19 lines
473 B
C#

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>();
}
}
}