Install updates will send info to UI

This commit is contained in:
Mark McDowall 2014-01-13 20:18:33 -08:00
parent 2dccc0567e
commit 3ccdbca712
1 changed files with 8 additions and 0 deletions

View File

@ -5,5 +5,13 @@ namespace NzbDrone.Core.Update.Commands
public class InstallUpdateCommand : Command public class InstallUpdateCommand : Command
{ {
public UpdatePackage UpdatePackage { get; set; } public UpdatePackage UpdatePackage { get; set; }
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
} }
} }