Files
YouTube-Manager/Manager.App/Components/Layout/ApplicationLayout.razor.cs
2025-08-31 21:08:14 +02:00

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;
}
}