Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AttachmentReferenceWithUrl.cs
2{
7 {
8 private string url = null;
9
14 : base()
15 {
16 }
17
23 : this(Reference, Reference.Url)
24 {
25 }
26
32 : base(Reference)
33 {
34 this.url = Url;
35 }
36
40 public string Url
41 {
42 get => this.url;
43 set => this.url = value;
44 }
45 }
46}