mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-06 16:05:24 +00:00
* 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
21 lines
686 B
C#
21 lines
686 B
C#
using NLog;
|
|
using NzbDrone.Common.Disk;
|
|
using NzbDrone.Core.Extras.Files;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.Music;
|
|
|
|
namespace NzbDrone.Core.Extras.Others
|
|
{
|
|
public interface IOtherExtraFileService : IExtraFileService<OtherExtraFile>
|
|
{
|
|
}
|
|
|
|
public class OtherExtraFileService : ExtraFileService<OtherExtraFile>, IOtherExtraFileService
|
|
{
|
|
public OtherExtraFileService(IExtraFileRepository<OtherExtraFile> repository, IArtistService artistService, IDiskProvider diskProvider, IRecycleBinProvider recycleBinProvider, Logger logger)
|
|
: base(repository, artistService, diskProvider, recycleBinProvider, logger)
|
|
{
|
|
}
|
|
}
|
|
}
|