You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
547 B
27 lines
547 B
using AntDesign;
|
|
using Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme.Settings;
|
|
|
|
namespace Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme;
|
|
|
|
public class AbpAntDesignThemeOptions
|
|
{
|
|
public MenuOptions Menu { get; set; }
|
|
|
|
public AbpAntDesignThemeOptions()
|
|
{
|
|
Menu = new MenuOptions();
|
|
}
|
|
}
|
|
|
|
public class MenuOptions
|
|
{
|
|
public MenuTheme Theme { get; set; }
|
|
|
|
public MenuPlacement Placement { get; set; }
|
|
|
|
public MenuOptions()
|
|
{
|
|
Theme = MenuTheme.Dark;
|
|
Placement = MenuPlacement.Left;
|
|
}
|
|
}
|
|
|