Lidarr/NzbDrone.Core/IndexerSearch/EpisodeSearchCommand.cs

18 lines
362 B
C#

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