mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
13 lines
286 B
C#
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;
|
|
}
|
|
}
|