mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
14 lines
346 B
C#
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; }
|
|
}
|
|
} |