You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/src/NzbDrone.Core/Indexers/RssSyncCommand.cs

17 lines
278 B

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Indexers
{
11 years ago
public class RssSyncCommand : Command
{
11 years ago
public override bool SendUpdatesToClient
{
11 years ago
get
{
return true;
}
}
11 years ago
}
}