mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
38cbb2114f
* Preliminary Work for Extras for Music * DB Migration for ExtraFiles, Other Cleanup * More Extras Work, Add Album Metadata Type * Update Housekeeps for Music Extras * Fix HouseKeeper and add new Tests * Final round of Cleanup
13 lines
331 B
C#
13 lines
331 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Extras.Files;
|
|
using NzbDrone.Core.Music;
|
|
|
|
namespace NzbDrone.Core.Extras
|
|
{
|
|
public interface IImportExistingExtraFiles
|
|
{
|
|
int Order { get; }
|
|
IEnumerable<ExtraFile> ProcessFiles(Artist artist, List<string> filesOnDisk, List<string> importedFiles);
|
|
}
|
|
}
|