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.
recyclarr/src/Trash/Radarr/CustomFormat/Processors/PersistenceSteps/IQualityProfileApiPersisten...

17 lines
552 B

using System.Collections.Generic;
using System.Threading.Tasks;
using Trash.Radarr.CustomFormat.Api;
using Trash.Radarr.CustomFormat.Models;
namespace Trash.Radarr.CustomFormat.Processors.PersistenceSteps
{
public interface IQualityProfileApiPersistenceStep
{
IDictionary<string, List<UpdatedFormatScore>> UpdatedScores { get; }
IReadOnlyCollection<string> InvalidProfileNames { get; }
Task Process(IQualityProfileService api,
IDictionary<string, QualityProfileCustomFormatScoreMapping> cfScores);
}
}