mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
bf1ff29519
commited somewhere between vancouver and vegas @ 2135ft. Alt and 480mph.
17 lines
479 B
C#
17 lines
479 B
C#
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IMediaFileProvider
|
|
{
|
|
/// <summary>
|
|
/// Scans the specified series folder for media files
|
|
/// </summary>
|
|
/// <param name="series">The series to be scanned</param>
|
|
void Scan(Series series);
|
|
|
|
EpisodeFile ImportFile(Series series, string filePath);
|
|
string GenerateEpisodePath(EpisodeModel episode);
|
|
}
|
|
} |