Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
GetQrCodeUrlEventArgs.cs
1using System;
2
4{
8 public class GetQrCodeUrlEventArgs : EventArgs
9 {
10 private readonly string text;
11 private string url;
12
18 {
19 this.text = Text;
20 this.url = null;
21 }
22
26 public string Text => this.text;
27
31 public string Url
32 {
33 get => this.url;
34 set => this.url = value;
35 }
36 }
37}
Event arguments for events that request an URL to a QR code.
GetQrCodeUrlEventArgs(string Text)
Event arguments for events that request an URL to a QR code.