Files
qbtmud/Lantean.QBTMud/Layout/OtherLayout.razor.cs
2024-10-22 09:57:50 +01:00

14 lines
346 B
C#

using Lantean.QBitTorrentClient.Models;
using Microsoft.AspNetCore.Components;
namespace Lantean.QBTMud.Layout
{
public partial class OtherLayout
{
[CascadingParameter(Name = "DrawerOpen")]
public bool DrawerOpen { get; set; }
[CascadingParameter]
public Preferences? Preferences { get; set; }
}
}