mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04: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;
|
|
}
|
|
}
|