Files
I150/srcs/RobotNet10/Components/RobotNet10.Components/OptionLayout.cs
2026-07-03 16:37:12 +07:00

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; } = [];
}