Set up framework for artist indexer searching

This commit is contained in:
Daniel Underwood
2017-07-07 17:04:03 -04:00
parent d32cf1120e
commit c55e3f2c34
23 changed files with 176 additions and 0 deletions
@@ -0,0 +1,11 @@
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
class AlbumSearchCommand : Command
{
public int AlbumId { get; set; }
public override bool SendUpdatesToClient => true;
}
}