xenadmin/XenAdmin/Wizards/PatchingWizard/PlanActions/IAvoidRestartCapable.cs
Gabor Apati-Nagy 15f69ef584 CP-18014: Alter batch hotfixing to use host.patches_requiring_reboot
Improving AvoidRestartHost usage/interface

Signed-off-by: Gabor Apati-Nagy <gabor.apati-nagy@citrix.com>
2016-08-26 16:04:28 +01:00

13 lines
258 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace XenAdmin.Wizards.PatchingWizard.PlanActions
{
interface IAvoidRestartHostsAware
{
List<string> AvoidRestartHosts { set; }
}
}