mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04:00
2e96c4e798
Towards #459
18 lines
516 B
C#
18 lines
516 B
C#
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Extras.Metadata
|
|
{
|
|
public interface IMetadataRepository : IProviderRepository<MetadataDefinition>
|
|
{
|
|
}
|
|
|
|
public class MetadataRepository : ProviderRepository<MetadataDefinition>, IMetadataRepository
|
|
{
|
|
public MetadataRepository(IMainDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
}
|
|
} |