mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-24 22:35:49 -04:00
0f2234bcdc
* Fix link in History tab (#734) * Fix iCal feed (#746) * Removed DKSubs from hardcoded subs * Fix searching all cut off unmet
12 lines
308 B
C#
12 lines
308 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
{
|
|
public class CutoffUnmetMoviesSearchCommand : Command
|
|
{
|
|
public override bool SendUpdatesToClient => true;
|
|
public string FilterKey { get; set; }
|
|
public string FilterValue { get; set; }
|
|
}
|
|
}
|