Sonarr/src/NzbDrone.Core/IndexerSearch/CutoffUnmetEpisodeSearchCom...

26 lines
527 B
C#
Raw Normal View History

2017-02-11 06:46:39 +00:00
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
public class CutoffUnmetEpisodeSearchCommand : Command
{
public int? SeriesId { get; set; }
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
public CutoffUnmetEpisodeSearchCommand()
{
}
public CutoffUnmetEpisodeSearchCommand(int seriesId)
{
SeriesId = seriesId;
}
}
}