mirror of https://github.com/Sonarr/Sonarr
16 lines
428 B
C#
16 lines
428 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|