mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-21 07:56:03 +01:00
19 lines
360 B
C#
19 lines
360 B
C#
|
using XenAPI;
|
|||
|
|
|||
|
namespace XenAdmin.Wizards.NewSRWizard_Pages.Frontends
|
|||
|
{
|
|||
|
public partial class LVMoFCoE : LVMoHBA
|
|||
|
{
|
|||
|
public LVMoFCoE()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
#region LVMoHBA overrides
|
|||
|
|
|||
|
public override SR.SRTypes SrType { get { return SR.SRTypes.lvmofcoe; } }
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|