mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-03 17:42:16 +01:00
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; }
|
|||
|
}
|
|||
|
}
|