Radarr/src/NzbDrone.Core/MetadataSource/PreDB/PreDBSyncCommand.cs
2019-12-27 20:40:13 -05:00

9 lines
207 B
C#

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