using System; using System.Collections.Generic; namespace Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme; public class AbpDynamicLayoutComponentOptions { /// /// Used to define components that renders in the layout /// public Dictionary?> Components { get; set; } public AbpDynamicLayoutComponentOptions() { Components = new Dictionary?>(); } }