2013-03-03 22:26:41 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Collections.ObjectModel;
|
2013-04-24 01:56:00 +00:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
2013-03-03 22:26:41 +00:00
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|