mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
9a8414edde
detaching of episodes when files are deleted is done through events now.
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;
|
|
}
|
|
}
|
|
} |