mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-22 16:36:03 +01:00
15f69ef584
Improving AvoidRestartHost usage/interface Signed-off-by: Gabor Apati-Nagy <gabor.apati-nagy@citrix.com>
13 lines
258 B
C#
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; }
|
|
}
|
|
}
|