mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-29 19:28:27 -07:00
Download clients now use thingy provider
This commit is contained in:
parent
ba22600412
commit
606d78f5e1
123 changed files with 2076 additions and 1820 deletions
20
src/NzbDrone.Core/Download/DownloadClientRepository.cs
Normal file
20
src/NzbDrone.Core/Download/DownloadClientRepository.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
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(IDatabase database, IEventAggregator eventAggregator)
|
||||
: base(database, eventAggregator)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue