Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ScanQrCodeNavigationArgs.cs
2
4{
10 public class ScanQrCodeNavigationArgs(string? QrTitle, string[] AllowedSchemas) : NavigationArgs
11 {
15 public ScanQrCodeNavigationArgs() : this(string.Empty, []) { }
16
20 public string? QrTitle { get; } = QrTitle;
21
25 public string[] AllowedSchemas { get; } = AllowedSchemas;
26
30 public TaskCompletionSource<string?>? QrCodeScanned { get; internal set; } = new();
31 }
32}
An base class holding page specific navigation parameters.