mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-31 04:54:01 +00:00
17 lines
278 B
C#
17 lines
278 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public class RssSyncCommand : Command
|
|
{
|
|
|
|
public override bool SendUpdatesToClient
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
}
|
|
} |