mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 09:09:42 +02:00
simplified quality fixed some broken tests
This commit is contained in:
@@ -8,9 +8,9 @@ namespace NzbDrone.Core.Providers
|
||||
{
|
||||
public interface IQualityProvider
|
||||
{
|
||||
void AddProfile(QualityProfile profile, List<AllowedQuality> allowedQualities);
|
||||
void UpdateProfile(QualityProfile profile, List<AllowedQuality> allowedQualities);
|
||||
void RemoveProfile(int profileId);
|
||||
List<QualityProfile> GetProfiles();
|
||||
void Add(QualityProfile profile);
|
||||
void Update(QualityProfile profile);
|
||||
void Delete(int profileId);
|
||||
List<QualityProfile> GetAllProfiles();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user