mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
229e87f398
(cherry picked from commit af5a681ab7edf7f72544647c490216907853d77d) Fixed: Renaming movie file for a movie (cherry picked from commit fc06e5135213f218648c8b36747d3bdf361f08b4)
13 lines
359 B
C#
13 lines
359 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Extras.Files;
|
|
using NzbDrone.Core.Movies;
|
|
|
|
namespace NzbDrone.Core.Extras
|
|
{
|
|
public interface IImportExistingExtraFiles
|
|
{
|
|
int Order { get; }
|
|
IEnumerable<ExtraFile> ProcessFiles(Movie movie, List<string> filesOnDisk, List<string> importedFiles, string fileNameBeforeRename);
|
|
}
|
|
}
|