Lidarr/src/NzbDrone.Core/IndexerSearch/MissingEpisodeSearchCommand.cs

20 lines
431 B
C#
Raw Normal View History

using NzbDrone.Core.Messaging.Commands;
2014-03-20 23:41:28 +00:00
namespace NzbDrone.Core.IndexerSearch
{
public class MissingEpisodeSearchCommand : Command
2014-03-20 23:41:28 +00:00
{
public int? SeriesId { get; set; }
2014-03-20 23:41:28 +00:00
2016-12-09 06:54:15 +00:00
public override bool SendUpdatesToClient => true;
public MissingEpisodeSearchCommand()
{
}
public MissingEpisodeSearchCommand(int seriesId)
{
SeriesId = seriesId;
}
2014-03-20 23:41:28 +00:00
}
}