mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-03 09:40:16 +01:00
0174974c93
Signed-off-by: Gabor Apati-Nagy <gabor.apati-nagy@citrix.com> Conflicts: XenAdmin/Wizards/PatchingWizard/PatchingWizard.cs XenAdmin/Wizards/PatchingWizard/PatchingWizard_PrecheckPage.cs XenModel/Messages.Designer.cs XenModel/Messages.ja.resx XenModel/Messages.resx XenModel/Messages.zh-CN.resx
13 lines
263 B
C#
13 lines
263 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace XenAdmin.Wizards.PatchingWizard.PlanActions
|
|
{
|
|
interface IAvoidRestartHostsAware
|
|
{
|
|
List<string> AvoidRestartHosts { get; set; }
|
|
}
|
|
}
|