mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
12 lines
232 B
C#
12 lines
232 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.NetImport
|
|
{
|
|
public class NetImportSyncCommand : Command
|
|
{
|
|
|
|
public override bool SendUpdatesToClient => true;
|
|
|
|
public int listId = 0;
|
|
}
|
|
} |