Radarr/NzbDrone.Core/IndexerSearch/SeriesSearchCommand.cs

20 lines
397 B
C#

using System;
using NzbDrone.Common;
using NzbDrone.Core.Messaging;
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;
}
}
}
}