You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
479 B
17 lines
479 B
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);
|
|
}
|
|
} |