moma/WizardStep.cs

15 строки
214 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace MoMA
{
public enum WizardStep
{
Introduction = 1,
ChooseAssemblies = 2,
ViewResults = 3,
SubmitResults = 4
}
}