mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
d083d653db
Default Quality can now be set through Settings/Quality using a drop down list. Fixed QualityType for BDRip (was sharing a value with DVD).
18 lines
432 B
C#
18 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IQualityProvider
|
|
{
|
|
void Add(QualityProfile profile);
|
|
void Update(QualityProfile profile);
|
|
void Delete(int profileId);
|
|
List<QualityProfile> GetAllProfiles();
|
|
QualityProfile Find(int profileId);
|
|
}
|
|
}
|