9 lines
204 B
C#
9 lines
204 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace Manager.App.Components.Layout;
|
|
|
|
public partial class MainLayout
|
|
{
|
|
[CascadingParameter]
|
|
public ApplicationLayout? ApplicationLayout { get; set; }
|
|
} |