mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-02 13:14:58 +00:00
13 lines
No EOL
252 B
C#
13 lines
No EOL
252 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Model;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface ISyncProvider
|
|
{
|
|
|
|
List<String> GetUnmappedFolders(string path);
|
|
bool BeginUpdateNewSeries();
|
|
}
|
|
} |