xenadmin/XenAdmin/Wizards/NewSRWizard_Pages/Frontends/LVMoFCoE.cs
Mihaela Stoica 551d7657ca CP-12314: Add New SR type for FCoE in the SR wizard
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
2015-06-29 14:44:29 +01:00

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
}
}