mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
23 lines
514 B
C#
23 lines
514 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Qualities
|
|
{
|
|
public interface IQualityProfileRepository : IBasicRepository<QualityProfile>
|
|
{
|
|
|
|
}
|
|
|
|
public class QualityProfileRepository : BasicRepository<QualityProfile>, IQualityProfileRepository
|
|
{
|
|
public QualityProfileRepository(IDbConnection database)
|
|
: base(database)
|
|
{
|
|
}
|
|
}
|
|
}
|