Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
WebMenuItem.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Text;
4
5
namespace
Waher.IoTGateway.Setup
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
}
Waher.IoTGateway.Setup.WebMenuItem
Represents an item in a web menu.
Definition:
WebMenuItem.cs:11
Waher.IoTGateway.Setup.WebMenuItem.WebMenuItem
WebMenuItem(string Title, string Url)
Represents an item in a web menu.
Definition:
WebMenuItem.cs:20
Waher.IoTGateway.Setup.WebMenuItem.Title
string Title
Displayable title.
Definition:
WebMenuItem.cs:29
Waher.IoTGateway.Setup.WebMenuItem.Url
string Url
URL to navigate to when item has been selected.
Definition:
WebMenuItem.cs:34
Waher.IoTGateway.Setup
Definition:
AlternativeField.cs:4
IoTGateway
Waher.IoTGateway
Setup
WebMenuItem.cs
Generated by
1.9.5