using System.IO.Abstractions; namespace Recyclarr.TrashLib.Repo; public interface IRepoPaths { IReadOnlyCollection RadarrCustomFormatPaths { get; } IReadOnlyCollection SonarrReleaseProfilePaths { get; } IReadOnlyCollection SonarrQualityPaths { get; } IReadOnlyCollection RadarrQualityPaths { get; } IReadOnlyCollection SonarrCustomFormatPaths { get; } IFileInfo RadarrCollectionOfCustomFormats { get; } IFileInfo SonarrCollectionOfCustomFormats { get; } }