mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-21 08:04:13 +00:00
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;
|
|
}
|
|
}
|