mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
17 lines
388 B
C#
17 lines
388 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();
|
|
}
|
|
}
|