mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04: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 SeriesDeletedEvent : IEvent
|
|
{
|
|
public Series Series { get; private set; }
|
|
|
|
public SeriesDeletedEvent(Series series)
|
|
{
|
|
Series = series;
|
|
}
|
|
}
|
|
} |