1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core/Tv/Events/SeriesDeletedEvent.cs

17 lines
411 B
C#
Raw Normal View History

2013-03-05 20:35:33 +01:00
using System.Linq;
using NzbDrone.Common.Messaging;
2013-03-05 20:35:33 +01:00
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
}
}
}