mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-22 16:36:03 +01:00
d3914a2318
intermediate commit Signed-off-by: Gabor Apati-Nagy <gabor.apati-nagy@citrix.com>
18 lines
425 B
C#
18 lines
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using XenAdmin.Core;
|
|
using XenAPI;
|
|
|
|
namespace XenAdmin.Wizards.PatchingWizard.PlanActions
|
|
{
|
|
public class PoolPatchMapping
|
|
{
|
|
public XenServerPatch XenServerPatch { get; set; }
|
|
public Pool_patch Pool_patch { get; set; }
|
|
public Host Host { get; set; }
|
|
}
|
|
}
|