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

29 lines
631 B
C#

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
public class CutoffUnmetEpisodeSearchCommand : Command
{
public int? SeriesId { get; set; }
public bool Monitored { get; set; }
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
public CutoffUnmetEpisodeSearchCommand()
{
Monitored = true;
}
public CutoffUnmetEpisodeSearchCommand(int seriesId)
{
SeriesId = seriesId;
Monitored = true;
}
}
}