mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
18 lines
No EOL
361 B
C#
18 lines
No EOL
361 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Messaging;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Update.Commands
|
|
{
|
|
public class ApplicationUpdateCommand : Command
|
|
{
|
|
public override bool SendUpdatesToClient
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
} |