mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
aab425ee5b
* few small things * update var names * Validate Root Folder, Minimum Avability and ProfileId on List import.
12 lines
304 B
C#
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; }
|
|
}
|
|
}
|