mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
season list is properly populated in series details.
This commit is contained in:
parent
6447b78a5a
commit
62f15d4d96
18 changed files with 127 additions and 23 deletions
16
NzbDrone.Core/Tv/Events/EpisodeInfoAddedEvent.cs
Normal file
16
NzbDrone.Core/Tv/Events/EpisodeInfoAddedEvent.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using NzbDrone.Common.Eventing;
|
||||
|
||||
namespace NzbDrone.Core.Tv.Events
|
||||
{
|
||||
public class EpisodeInfoAddedEvent : IEvent
|
||||
{
|
||||
public ReadOnlyCollection<Episode> Episodes { get; private set; }
|
||||
|
||||
public EpisodeInfoAddedEvent(IList<Episode> episodes)
|
||||
{
|
||||
Episodes = new ReadOnlyCollection<Episode>(episodes);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue