mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
f77a2feeef
* Stylecop Rules and Fixes
18 lines
503 B
C#
18 lines
503 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(IMainDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
}
|
|
}
|