mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
12 lines
288 B
C#
12 lines
288 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Model;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface ISyncProvider
|
|
{
|
|
bool BeginSyncUnmappedFolders(List<SeriesMappingModel> unmapped);
|
|
List<String> GetUnmappedFolders(string path);
|
|
}
|
|
} |