13 lines
366 B
C#
13 lines
366 B
C#
using Microsoft.AspNetCore.Components.Routing;
|
|
|
|
namespace RobotNet10.Components;
|
|
|
|
public record NavModel(string Icon, string Path, string Label, NavLinkMatch Match);
|
|
|
|
public class OptionLayout()
|
|
{
|
|
public string AppName { get; set; } = "RobotNet";
|
|
public string Version { get; set; } = "";
|
|
public NavModel[] NavModels { get; set; } = [];
|
|
}
|