You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/Lidarr.Api.V1/ProviderTestAllResult.cs

19 lines
471 B

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