mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-17 21:44:48 -04:00
* New: Allow major version updates to be installed (cherry picked from commit 0e95ba2021b23cc65bce0a0620dd48e355250dab) * fixup! New: Allow major version updates to be installed --------- Co-authored-by: Mark McDowall <mark@mcdowall.ca>
12 lines
310 B
C#
12 lines
310 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Update.Commands
|
|
{
|
|
public class ApplicationUpdateCommand : Command
|
|
{
|
|
public bool InstallMajorUpdate { get; set; }
|
|
public override bool SendUpdatesToClient => true;
|
|
public override bool IsExclusive => true;
|
|
}
|
|
}
|