mirror of https://github.com/Radarr/Radarr
17 lines
456 B
C#
17 lines
456 B
C#
using System;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Events
|
|
{
|
|
public class EpisodeFileDeletedEvent : IEvent
|
|
{
|
|
public EpisodeFile EpisodeFile { get; private set; }
|
|
public Boolean ForUpgrade { get; private set; }
|
|
|
|
public EpisodeFileDeletedEvent(EpisodeFile episodeFile, Boolean forUpgrade)
|
|
{
|
|
EpisodeFile = episodeFile;
|
|
ForUpgrade = forUpgrade;
|
|
}
|
|
}
|
|
} |