Updating manually now uses a command so it shows progress

This commit is contained in:
Mark McDowall 2013-10-18 17:48:14 -07:00
parent e7780af212
commit aa26d68f18
5 changed files with 24 additions and 15 deletions

View file

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Update.Commands
{
public class InstallUpdateCommand : Command
{
public UpdatePackage UpdatePackage { get; set; }
}
}