mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-10 21:12:56 +01:00
13 lines
252 B
C#
13 lines
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();
|
|
}
|
|
} |