mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-10 04:52:42 +01:00
c8a8fb4d62
Added basic support for file scan Major redactor of ReportTitle/File parsing Updated Ninject/Ninject.MVC Removed dependency from Microsoft.Web.Administration reactored Episode repository structure
13 lines
329 B
C#
13 lines
329 B
C#
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);
|
|
}
|
|
} |