mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-23 02:05:27 +02:00
20 lines
507 B
C#
20 lines
507 B
C#
|
using NzbDrone.Core.Datastore;
|
||
|
using NzbDrone.Core.Messaging.Events;
|
||
|
using NzbDrone.Core.ThingiProvider;
|
||
|
|
||
|
|
||
|
namespace NzbDrone.Core.Metadata
|
||
|
{
|
||
|
public interface IMetadataRepository : IProviderRepository<MetadataDefinition>
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public class MetadataRepository : ProviderRepository<MetadataDefinition>, IMetadataRepository
|
||
|
{
|
||
|
public MetadataRepository(IDatabase database, IEventAggregator eventAggregator)
|
||
|
: base(database, eventAggregator)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|