Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ViewSwitcherItemDescriptor.cs
1using Microsoft.Maui.Controls;
2
4{
5 internal sealed class ViewSwitcherItemDescriptor
6 {
7 public int Index { get; set; }
8
9 public object? Item { get; set; }
10
11 public ViewSwitcherStateView? StateView { get; set; }
12
13 public string? StateKey { get; set; }
14
15 public View? InlineView { get; set; }
16 }
17}