Files
mapo-iob-man/IOB-MAN/Components/Layout/MainLayout.razor.cs
T
Samuele Locatelli bbbb7a6f85 Modifica YAML:
- messo doxygen al posto di docfx
- update doc classe appCheck
2025-11-28 09:27:43 +01:00

23 lines
516 B
C#

namespace IOB_MAN.Components.Layout
{
public partial class MainLayout
{
#region Protected Properties
protected bool navLarge { get; set; } = true;
protected string sideClass { get; set; } = "sidebar";
#endregion Protected Properties
#region Protected Methods
protected void UpdateNavDisplay()
{
navLarge = !navLarge;
sideClass = navLarge ? "sidebar" : "sidebarSmall";
}
#endregion Protected Methods
}
}