using System.Collections.Generic; using TrashLib.Radarr.Config; using TrashLib.Radarr.CustomFormat.Models; namespace TrashLib.Radarr.CustomFormat.Processors.GuideSteps { public interface IQualityProfileStep { Dictionary ProfileScores { get; } List<(string name, string trashId, string profileName)> CustomFormatsWithoutScore { get; } void Process(RadarrConfig config, IReadOnlyCollection customFormats); } }