Lidarr/src/NzbDrone.Core/IndexerSearch/ArtistSearchCommand.cs

12 lines
246 B
C#
Raw Normal View History

2017-07-20 02:34:16 +00:00
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
public class ArtistSearchCommand : Command
2017-07-20 02:34:16 +00:00
{
public int ArtistId { get; set; }
public override bool SendUpdatesToClient => true;
}
}