Lidarr/NzbDrone.Core/IndexerSearch/SeriesSearchCommand.cs

17 lines
329 B
C#

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
public class SeriesSearchCommand : Command
{
public int SeriesId { get; set; }
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
}
}