mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-22 16:36:03 +01:00
a56338861c
Signed-off-by: Mihaela Stoica <Mihaela.Stoica@citrix.com> Conflicts: XenAdmin/Wizards/NewSRWizard_Pages/Frontends/LVMoISCSI.cs XenAdmin/Wizards/NewSRWizard_Pages/SrWizardType.cs XenAdmin/XenAdmin.csproj
31 lines
643 B
C#
31 lines
643 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace XenAdmin.Controls
|
|
{
|
|
public partial class SrProvisioningMethod : UserControl
|
|
{
|
|
public SrProvisioningMethod()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
internal bool Gfs2
|
|
{
|
|
get { return radioButtonGfs2.Checked; }
|
|
}
|
|
|
|
internal bool Lvm
|
|
{
|
|
get { return radioButtonLvm.Checked; }
|
|
}
|
|
}
|
|
}
|