mirror of https://github.com/Radarr/Radarr
14 lines
284 B
C#
14 lines
284 B
C#
|
using System.Collections.Generic;
|
||
|
using NzbDrone.Core.Repository;
|
||
|
|
||
|
namespace NzbDrone.Core.Providers
|
||
|
{
|
||
|
public interface ISeasonProvider
|
||
|
{
|
||
|
Season GetSeason(long seasonId);
|
||
|
List<Season> GetSeasongs(long seriesId);
|
||
|
|
||
|
int SaveSeason(Season season);
|
||
|
}
|
||
|
|
||
|
}
|