mirror of
https://github.com/Readarr/Readarr
synced 2025-12-24 01:03:32 +01: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;
|
|
}
|
|
}
|
|
|
|
}
|
|
} |