using System.Collections.Generic; using System.Collections.ObjectModel; using NzbDrone.Common.Eventing; namespace NzbDrone.Core.Tv.Events { public class EpisodeInfoUpdatedEvent : IEvent { public ReadOnlyCollection Episodes { get; private set; } public EpisodeInfoUpdatedEvent(IList episodes) { Episodes = new ReadOnlyCollection(episodes); } } }