mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 23:19:53 -04:00
14 lines
325 B
C#
14 lines
325 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;
|
|
|
|
public bool InstallMajorUpdate { get; set; }
|
|
}
|
|
}
|