16 lines
394 B
C#
16 lines
394 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace Manager.App.Components.Layout;
|
|
|
|
public partial class ApplicationLayout
|
|
{
|
|
[CascadingParameter]
|
|
public BaseLayout? BaseLayout { get; set; }
|
|
public bool DrawerOpen { get; set; } = true;
|
|
public string AppText { get; set; } = "YouTube Manager";
|
|
|
|
private void ToggleDrawerOpen()
|
|
{
|
|
DrawerOpen = !DrawerOpen;
|
|
}
|
|
} |