mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-24 22:35:49 -04:00
New: Bump Version to V3 to please the masses
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System.Collections.Generic;
|
||||
using FluentValidation.Results;
|
||||
using NzbDrone.Common.Extensions;
|
||||
|
||||
namespace Radarr.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