2011-02-03 01:07:36 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
|
|
|
|
public interface IQualityProvider
|
|
|
|
|
{
|
2011-02-03 19:47:51 +00:00
|
|
|
|
void Add(QualityProfile profile);
|
|
|
|
|
void Update(QualityProfile profile);
|
|
|
|
|
void Delete(int profileId);
|
|
|
|
|
List<QualityProfile> GetAllProfiles();
|
2011-02-05 06:07:25 +00:00
|
|
|
|
QualityProfile Find(int profileId);
|
2011-02-03 01:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|