mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-31 18:35:32 -04:00
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;
|
|
}
|
|
}
|
|
} |