Fix Search and Add Indexers

This commit is contained in:
Qstick
2020-10-21 12:23:58 -04:00
parent cfb1a80c58
commit 5f7d063c14
12 changed files with 83 additions and 117 deletions
@@ -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;
}
}
}