Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>pull/528/head
parent
1d1aca8fb7
commit
4347e92bef
@ -0,0 +1,18 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using FluentValidation.Results;
|
||||||
|
using NzbDrone.Common.Extensions;
|
||||||
|
|
||||||
|
namespace Lidarr.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>();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue