mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02:00
da979639ba
Some RssFeed Parsing has been implemented, it does not currently download items, still need to perform a more verbose episode check.
15 lines
446 B
C#
15 lines
446 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface ISeasonProvider
|
|
{
|
|
Season GetSeason(int seasonId);
|
|
List<Season> GetSeasons(int seriesId);
|
|
void EnsureSeason(int seriesId, int seasonId, int seasonNumber);
|
|
int SaveSeason(Season season);
|
|
bool IsIgnored(int seasonId);
|
|
bool IsIgnored(int seriesId, int seasonNumber);
|
|
}
|
|
} |