Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
GetStartedViewModel.cs
1using System.ComponentModel;
2using System.Security.Cryptography;
3using System.Text;
4using System.Xml;
5using CommunityToolkit.Mvvm.ComponentModel;
6using CommunityToolkit.Mvvm.Input;
13using Waher.Content;
16
18{
19 public partial class GetStartedViewModel() : BaseRegistrationViewModel(RegistrationStep.GetStarted)
20 {
21 [RelayCommand]
22 private void NewAccount()
23 {
24 GoToRegistrationStep(RegistrationStep.ValidatePhone);
25 }
26
27 [RelayCommand]
28 private void ExistingAccount()
29 {
30 GoToRegistrationStep(RegistrationStep.ContactSupport);
31 }
32
33
34 }
35}
RegistrationStep
The different steps of a TAG Profile registration journey.