Radarr/NzbDrone.Core/Update/Commands/ApplicationUpdateCommand.cs

15 lines
293 B
C#
Raw Normal View History

2013-09-12 22:42:01 +00:00
using NzbDrone.Core.Messaging.Commands;
2013-05-16 00:16:06 +00:00
namespace NzbDrone.Core.Update.Commands
{
2013-09-11 06:33:47 +00:00
public class ApplicationUpdateCommand : Command
2013-05-16 00:16:06 +00:00
{
2013-09-11 06:33:47 +00:00
public override bool SendUpdatesToClient
2013-08-28 00:51:54 +00:00
{
2013-09-11 06:33:47 +00:00
get
{
return true;
}
2013-08-28 00:51:54 +00:00
}
2013-05-16 00:16:06 +00:00
}
}