mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
12 lines
271 B
C#
12 lines
271 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Update.Commands
|
|
{
|
|
public class ApplicationUpdateCheckCommand : Command
|
|
{
|
|
public override bool SendUpdatesToClient => true;
|
|
|
|
public override string CompletionMessage => null;
|
|
}
|
|
}
|