mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
4c1e6e14aa
Upgraded episodes will no longer be auto unmonitored EpsiodeFiles will be removed from db if parsing rules have changed EpisodeFiles will be removed from db if they are not in their series' folder (or subfolder)
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;
|
|
}
|
|
}
|
|
} |