mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
15 lines
299 B
C#
15 lines
299 B
C#
|
using System.Linq;
|
|||
|
using NzbDrone.Common.Eventing;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Tv.Events
|
|||
|
{
|
|||
|
public class SeriesUpdatedEvent : IEvent
|
|||
|
{
|
|||
|
public Series Series { get; private set; }
|
|||
|
|
|||
|
public SeriesUpdatedEvent(Series series)
|
|||
|
{
|
|||
|
Series = series;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|