1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 08:51:43 +02:00
Radarr/NzbDrone.Core/Tv/Events/EpisodeInfoAddedEvent.cs

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);
}
}
}