mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
Fix Search and Add Indexers
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using NzbDrone.Common.Messaging;
|
||||
|
||||
namespace NzbDrone.Core.Indexers
|
||||
{
|
||||
public class IndexerQueryEvent : IEvent
|
||||
{
|
||||
public int IndexerId { get; set; }
|
||||
public string Query { get; set; }
|
||||
|
||||
public IndexerQueryEvent(int indexerId, string query)
|
||||
{
|
||||
IndexerId = indexerId;
|
||||
Query = query;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user