Files
Prowlarr-Prowlarr/src/NzbDrone.Core/MetadataSource/PreDB/PreDBSyncCommand.cs
2017-03-11 00:17:09 +01:00

10 lines
207 B
C#

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.MetadataSource.PreDB
{
public class PreDBSyncCommand : Command
{
public override bool SendUpdatesToClient => true;
}
}