Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
WebMenuItem.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public class WebMenuItem
11 {
12 private readonly string title;
13 private readonly string url;
14
20 public WebMenuItem(string Title, string Url)
21 {
22 this.title = Title;
23 this.url = Url;
24 }
25
29 public string Title => this.title;
30
34 public string Url => this.url;
35 }
36}
Represents an item in a web menu.
Definition: WebMenuItem.cs:11
WebMenuItem(string Title, string Url)
Represents an item in a web menu.
Definition: WebMenuItem.cs:20
string Title
Displayable title.
Definition: WebMenuItem.cs:29
string Url
URL to navigate to when item has been selected.
Definition: WebMenuItem.cs:34