mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
22 lines
443 B
C#
22 lines
443 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
{
|
|
class AlbumSearchCommand : Command
|
|
{
|
|
public List<int> AlbumIds { get; set; }
|
|
|
|
public override bool SendUpdatesToClient => true;
|
|
|
|
public AlbumSearchCommand()
|
|
{
|
|
}
|
|
|
|
public AlbumSearchCommand(List<int> albumIds)
|
|
{
|
|
AlbumIds = albumIds;
|
|
}
|
|
}
|
|
}
|