using System;
using System.Collections.Generic;
using JetBrains.Annotations;
namespace Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor;
public class AbpDynamicLayoutComponentOptions
{
///
/// Used to define components that renders in the layout
///
[NotNull]
public Dictionary?> Components { get; set; }
public AbpDynamicLayoutComponentOptions()
{
Components = new Dictionary?>();
}
}