Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OnboardingStep.cs
2{
6 public enum OnboardingStep
7 {
8 Welcome = 0,
9 ValidatePhone = 20,
10 ValidateEmail = 30,
11 NameEntry = 40,
12 CreateAccount = 50,
13 DefinePassword = 60,
14 Biometrics = 80,
15 Finalize = 90,
16 ContactSupport = 100
17 }
18
19 public static class OnboardingStepExtensions
20 {
24 public static string ToStateKey(this OnboardingStep step) => step.ToString();
25 }
26}
static string ToStateKey(this OnboardingStep step)
Converts a step value to its string StateKey.
OnboardingStep
Unified onboarding steps matching the registration journey.