mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
Change AlbumSearchCommand to take a list of ids instead of a single id
This commit is contained in:
@@ -1,11 +1,21 @@
|
||||
using NzbDrone.Core.Messaging.Commands;
|
||||
using System.Collections.Generic;
|
||||
using NzbDrone.Core.Messaging.Commands;
|
||||
|
||||
namespace NzbDrone.Core.IndexerSearch
|
||||
{
|
||||
class AlbumSearchCommand : Command
|
||||
{
|
||||
public int AlbumId { get; set; }
|
||||
public List<int> AlbumIds { get; set; }
|
||||
|
||||
public override bool SendUpdatesToClient => true;
|
||||
|
||||
public AlbumSearchCommand()
|
||||
{
|
||||
}
|
||||
|
||||
public AlbumSearchCommand(List<int> albumIds)
|
||||
{
|
||||
AlbumIds = albumIds;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user