mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
21 lines
508 B
C#
21 lines
508 B
C#
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
|
|
|
|
namespace NzbDrone.Core.Qualities
|
|
{
|
|
public interface IQualityDefinitionRepository : IBasicRepository<QualityDefinition>
|
|
{
|
|
}
|
|
|
|
public class QualityDefinitionRepository : BasicRepository<QualityDefinition>, IQualityDefinitionRepository
|
|
{
|
|
public QualityDefinitionRepository(IDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
|
|
|
|
}
|
|
}
|