Add artist search framework code

This commit is contained in:
Daniel Underwood
2017-07-19 22:34:16 -04:00
parent 6ecaa4b97f
commit f40918ddb8
21 changed files with 159 additions and 0 deletions
@@ -0,0 +1,11 @@
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
class ArtistSearchCommand : Command
{
public int ArtistId { get; set; }
public override bool SendUpdatesToClient => true;
}
}