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

12 lines
304 B
C#

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
public class MissingMoviesSearchCommand : Command
{
public override bool SendUpdatesToClient => true;
public string FilterKey { get; set; }
public string FilterValue { get; set; }
}
}