mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
12 lines
246 B
C#
12 lines
246 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
{
|
|
public class ArtistSearchCommand : Command
|
|
{
|
|
public int ArtistId { get; set; }
|
|
|
|
public override bool SendUpdatesToClient => true;
|
|
}
|
|
}
|