Radarr/src/NzbDrone.Core/IndexerSearch/MoviesSearchCommand.cs

13 lines
286 B
C#

using System.Collections.Generic;
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
public class MoviesSearchCommand : Command
{
public List<int> MovieIds { get; set; }
public override bool SendUpdatesToClient => true;
}
}