1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 08:51:43 +02:00
Radarr/NzbDrone.Core/Tv/Events/SeriesDeletedEvent.cs

17 lines
410 B
C#
Raw Normal View History

2013-03-05 20:35:33 +01:00
using System.Linq;
using NzbDrone.Common.Eventing;
namespace NzbDrone.Core.Tv.Events
{
public class SeriesDeletedEvent : IEvent
{
public Series Series { get; private set; }
public bool DeleteFiles { get; private set; }
2013-03-05 20:35:33 +01:00
public SeriesDeletedEvent(Series series, bool deleteFiles)
2013-03-05 20:35:33 +01:00
{
Series = series;
DeleteFiles = deleteFiles;
2013-03-05 20:35:33 +01:00
}
}
}