20 lines
381 B
C#
20 lines
381 B
C#
using System.Windows.Forms;
|
|
|
|
namespace CRVM
|
|
{
|
|
public partial class WizardBaseChannel : UserControl
|
|
{
|
|
protected string stepName = "base";
|
|
public string StepName
|
|
{
|
|
get { return stepName; }
|
|
set { stepName = value; }
|
|
}
|
|
|
|
public WizardBaseChannel()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|