1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-01 04:25:55 +00:00
Lidarr/NzbDrone.Core/Providers/ISeasonProvider.cs
2010-09-28 13:44:33 -07:00

14 lines
No EOL
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);
}
}