mirror of
https://github.com/Lidarr/Lidarr
synced 2026-03-06 12:34:59 +01:00
19 lines
No EOL
546 B
C#
19 lines
No EOL
546 B
C#
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public interface IDownloadClientRepository : IProviderRepository<DownloadClientDefinition>
|
|
{
|
|
|
|
}
|
|
|
|
public class DownloadClientRepository : ProviderRepository<DownloadClientDefinition>, IDownloadClientRepository
|
|
{
|
|
public DownloadClientRepository(IMainDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
}
|
|
} |