1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-02 21:24:56 +00:00
Sonarr/NzbDrone.Core/Providers/ISyncProvider.cs

12 lines
No EOL
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);
}
}