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

26 lines
522 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; private set; }
2014-03-20 23:41:28 +00:00
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
public MissingEpisodeSearchCommand()
{
}
public MissingEpisodeSearchCommand(int seriesId)
{
SeriesId = seriesId;
}
2014-03-20 23:41:28 +00:00
}
}