mirror of https://github.com/Radarr/Radarr
16 lines
432 B
C#
16 lines
432 B
C#
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using NzbDrone.Common.Eventing;
|
|
|
|
namespace NzbDrone.Core.Tv.Events
|
|
{
|
|
public class EpisodeInfoUpdatedEvent : IEvent
|
|
{
|
|
public ReadOnlyCollection<Episode> Episodes { get; private set; }
|
|
|
|
public EpisodeInfoUpdatedEvent(IList<Episode> episodes)
|
|
{
|
|
Episodes = new ReadOnlyCollection<Episode>(episodes);
|
|
}
|
|
}
|
|
} |