mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 19:50:15 -07:00
17 lines
405 B
C#
17 lines
405 B
C#
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Qualities
|
|
{
|
|
public interface IQualityProfileRepository : IBasicRepository<QualityProfile>
|
|
{
|
|
|
|
}
|
|
|
|
public class QualityProfileRepository : BasicRepository<QualityProfile>, IQualityProfileRepository
|
|
{
|
|
public QualityProfileRepository(IDatabase database)
|
|
: base(database)
|
|
{
|
|
}
|
|
}
|
|
}
|