Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ApplyIdNavigationArgs.cs
2
4{
10 public class ApplyIdNavigationArgs(bool Personal, bool ReusePhoto) : NavigationArgs()
11 {
16 : this(true, true)
17 {
18 }
19
23 public bool Personal { get; } = Personal;
24
28 public bool Organizational { get; } = !Personal;
29
33 public bool ReusePhoto { get; } = ReusePhoto;
34 }
35}
An base class holding page specific navigation parameters.
class ApplyIdNavigationArgs(bool Personal, bool ReusePhoto)
Navigation arguments for the ApplyIdPage and ApplyIdViewModel.