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

13 lines
286 B
C#
Raw Normal View History

2019-12-22 22:08:53 +00:00
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;
}
2019-12-22 21:24:10 +00:00
}