2018-11-23 07:03:32 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using FluentValidation.Results;
|
|
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
|
2019-12-03 01:36:18 +00:00
|
|
|
namespace Radarr.Api.V3
|
2018-11-23 07:03:32 +00:00
|
|
|
{
|
|
|
|
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>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|