mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04: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)
|
|
{
|
|
}
|
|
}
|
|
} |