1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-02 21:34:35 +00:00
Radarr/NzbDrone.Core/Indexers/RssSyncCommand.cs
2013-09-11 17:42:53 -07:00

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;
}
}
}
}