mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
e21574a203
New: New releases that fail will be retried a second time after waiting 1hr (configurable) Fixed: Blacklisting releases with the same date and vastly different ages
27 lines
547 B
C#
27 lines
547 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
{
|
|
public class EpisodeSearchCommand : Command
|
|
{
|
|
public List<int> EpisodeIds { get; set; }
|
|
|
|
public override bool SendUpdatesToClient
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public EpisodeSearchCommand()
|
|
{
|
|
}
|
|
|
|
public EpisodeSearchCommand(List<int> episodeIds)
|
|
{
|
|
EpisodeIds = episodeIds;
|
|
}
|
|
}
|
|
} |