mirror of
https://github.com/Radarr/Radarr
synced 2025-01-02 21:34:35 +00:00
20 lines
No EOL
346 B
C#
20 lines
No EOL
346 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Messaging;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public class RssSyncCommand : Command
|
|
{
|
|
|
|
public override bool SendUpdatesToClient
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
}
|
|
} |