mirror of https://github.com/lidarr/Lidarr
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);
|
|
}
|
|
}
|
|
} |