mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
2e96c4e798
Towards #459
20 lines
594 B
C#
20 lines
594 B
C#
using NLog;
|
|
using NzbDrone.Common.Disk;
|
|
using NzbDrone.Core.Extras.Files;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Extras.Others
|
|
{
|
|
public interface IOtherExtraFileService : IExtraFileService<OtherExtraFile>
|
|
{
|
|
}
|
|
|
|
public class OtherExtraFileService : ExtraFileService<OtherExtraFile>, IOtherExtraFileService
|
|
{
|
|
public OtherExtraFileService(IExtraFileRepository<OtherExtraFile> repository, ISeriesService seriesService, IDiskProvider diskProvider, Logger logger)
|
|
: base(repository, seriesService, diskProvider, logger)
|
|
{
|
|
}
|
|
}
|
|
}
|