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/Recyclarr/Code/Radarr/IGuideProcessor.cs

17 lines
491 B

using System.Collections.Generic;
using System.Threading.Tasks;
using TrashLib.Radarr.Config;
using TrashLib.Radarr.CustomFormat.Models;
namespace Recyclarr.Code.Radarr
{
public interface IGuideProcessor
{
IReadOnlyCollection<ProcessedCustomFormatData> CustomFormats { get; }
bool IsLoaded { get; }
Task ForceBuildGuideData(RadarrConfig config);
Task<bool> BuildGuideData(RadarrConfig config);
Task SaveToRadarr(RadarrConfig config);
}
}