mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
added delete series event
This commit is contained in:
parent
80ac142434
commit
cc1dcffdf3
3 changed files with 23 additions and 2 deletions
15
NzbDrone.Core/Tv/Events/SeriesDeletedEvent.cs
Normal file
15
NzbDrone.Core/Tv/Events/SeriesDeletedEvent.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue