2013-07-23 00:50:37 +00:00
|
|
|
|
using System;
|
|
|
|
|
using NzbDrone.Common.Messaging;
|
2013-03-07 04:34:56 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Events
|
|
|
|
|
{
|
|
|
|
|
public class EpisodeFileDeletedEvent : IEvent
|
|
|
|
|
{
|
|
|
|
|
public EpisodeFile EpisodeFile { get; private set; }
|
2013-07-23 00:50:37 +00:00
|
|
|
|
public Boolean ForUpgrade { get; private set; }
|
2013-03-07 04:34:56 +00:00
|
|
|
|
|
2013-07-23 00:50:37 +00:00
|
|
|
|
public EpisodeFileDeletedEvent(EpisodeFile episodeFile, Boolean forUpgrade)
|
2013-03-07 04:34:56 +00:00
|
|
|
|
{
|
|
|
|
|
EpisodeFile = episodeFile;
|
2013-07-23 00:50:37 +00:00
|
|
|
|
ForUpgrade = forUpgrade;
|
2013-03-07 04:34:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|