1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-19 05:10:02 +00:00
Lidarr/NzbDrone.Core/Providers/IQualityProvider.cs
markus101 3b63cfb5d2 Added Quality Provider to interface with QualityProfiles.
Changed QualityProfile and AllowedQuality to be meet requirements
2011-02-02 17:07:36 -08:00

16 lines
484 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 AddProfile(QualityProfile profile, List<AllowedQuality> allowedQualities);
void UpdateProfile(QualityProfile profile, List<AllowedQuality> allowedQualities);
void RemoveProfile(int profileId);
List<QualityProfile> GetProfiles();
}
}