Fixes #1146 (cherry picked from commit 40c99fb67587b5890d4d2a3a3af1d61034598e1f)pull/1147/head
parent
d8d09c2517
commit
4712fedb0e
@ -0,0 +1,21 @@
|
||||
using System.Collections.Generic;
|
||||
using NzbDrone.Core.Messaging.Commands;
|
||||
|
||||
namespace NzbDrone.Core.Books.Commands
|
||||
{
|
||||
public class BulkRefreshBookCommand : Command
|
||||
{
|
||||
public BulkRefreshBookCommand()
|
||||
{
|
||||
}
|
||||
|
||||
public BulkRefreshBookCommand(List<int> bookIds)
|
||||
{
|
||||
BookIds = bookIds;
|
||||
}
|
||||
|
||||
public List<int> BookIds { get; set; }
|
||||
|
||||
public override bool SendUpdatesToClient => true;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue