2014-12-10 02:20:50 +00:00
|
|
|
|
using NzbDrone.Core.Messaging.Commands;
|
2014-03-20 23:41:28 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
|
|
|
{
|
2014-04-02 23:24:31 +00:00
|
|
|
|
public class MissingEpisodeSearchCommand : Command
|
2014-03-20 23:41:28 +00:00
|
|
|
|
{
|
2015-09-22 21:48:19 +00:00
|
|
|
|
public int? SeriesId { get; set; }
|
2014-03-20 23:41:28 +00:00
|
|
|
|
|
|
|
|
|
public override bool SendUpdatesToClient
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-04-01 20:07:41 +00:00
|
|
|
|
|
|
|
|
|
public MissingEpisodeSearchCommand()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-10 02:20:50 +00:00
|
|
|
|
public MissingEpisodeSearchCommand(int seriesId)
|
2014-04-01 20:07:41 +00:00
|
|
|
|
{
|
2014-12-10 02:20:50 +00:00
|
|
|
|
SeriesId = seriesId;
|
2014-04-01 20:07:41 +00:00
|
|
|
|
}
|
2014-03-20 23:41:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|