CRVM-redis-6/Host/controls/WizardBaseChannel.cs
2025-11-07 02:02:31 +08:00

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();
}
}
}