mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
18 lines
530 B
C#
18 lines
530 B
C#
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Extras.Files;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
|
|
namespace NzbDrone.Core.Extras.Others
|
|
{
|
|
public interface IOtherExtraFileRepository : IExtraFileRepository<OtherExtraFile>
|
|
{
|
|
}
|
|
|
|
public class OtherExtraFileRepository : ExtraFileRepository<OtherExtraFile>, IOtherExtraFileRepository
|
|
{
|
|
public OtherExtraFileRepository(IMainDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
}
|
|
} |