mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-27 23:06:29 -04:00
v3 API
This commit is contained in:
committed by
Taloth Saldono
parent
211f3769e1
commit
7297c1b8e4
@@ -0,0 +1,18 @@
|
||||
using System.Collections.Generic;
|
||||
using FluentValidation.Results;
|
||||
using NzbDrone.Common.Extensions;
|
||||
|
||||
namespace Sonarr.Api.V3
|
||||
{
|
||||
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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user