mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
14 lines
328 B
C#
14 lines
328 B
C#
|
using NzbDrone.Common.Eventing;
|
||
|
|
||
|
namespace NzbDrone.Core.MediaFiles.Events
|
||
|
{
|
||
|
public class EpisodeFileDeletedEvent : IEvent
|
||
|
{
|
||
|
public EpisodeFile EpisodeFile { get; private set; }
|
||
|
|
||
|
public EpisodeFileDeletedEvent(EpisodeFile episodeFile)
|
||
|
{
|
||
|
EpisodeFile = episodeFile;
|
||
|
}
|
||
|
}
|
||
|
}
|