2013-10-05 03:47:20 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using NzbDrone.Core.Messaging.Commands;
|
2013-06-29 00:35:21 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
|
|
|
{
|
2014-04-02 23:24:31 +00:00
|
|
|
|
public class EpisodeSearchCommand : Command
|
2013-06-29 00:35:21 +00:00
|
|
|
|
{
|
2013-10-05 03:47:20 +00:00
|
|
|
|
public List<int> EpisodeIds { get; set; }
|
2013-09-11 06:33:47 +00:00
|
|
|
|
|
|
|
|
|
public override bool SendUpdatesToClient
|
2013-08-28 00:51:54 +00:00
|
|
|
|
{
|
2013-09-11 06:33:47 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-08-28 00:51:54 +00:00
|
|
|
|
}
|
2014-04-01 20:07:41 +00:00
|
|
|
|
|
|
|
|
|
public EpisodeSearchCommand()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EpisodeSearchCommand(List<int> episodeIds)
|
|
|
|
|
{
|
|
|
|
|
EpisodeIds = episodeIds;
|
|
|
|
|
}
|
2013-06-29 00:35:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|