mirror of
https://github.com/Readarr/Readarr
synced 2026-01-26 17:32:49 +01:00
10 lines
257 B
C#
10 lines
257 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Update.Commands
|
|
{
|
|
public class ApplicationUpdateCommand : Command
|
|
{
|
|
public override bool SendUpdatesToClient => true;
|
|
public override bool IsExclusive => true;
|
|
}
|
|
}
|