Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
GetStartedView.xaml.cs
1using CommunityToolkit.Mvvm.Input;
2
4{
5 public partial class GetStartedView
6 {
7 public static GetStartedView Create()
8 {
9 return Create<GetStartedView>();
10 }
11 public GetStartedView(GetStartedViewModel ViewModel)
12 {
13 this.InitializeComponent();
14 this.ContentViewModel = ViewModel;
15 }
16
17
18 }
19}