mirror of https://github.com/lidarr/Lidarr
18 lines
487 B
C#
18 lines
487 B
C#
using System;
|
|
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.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;
|
|
}
|
|
}
|
|
} |