mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-20 23:46:03 +01:00
551d7657ca
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
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
|
|
}
|
|
}
|