using Bootstrap.DataAccess;
using Bootstrap.Security;
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
namespace Bootstrap.Admin.Models
{
///
///
///
public class ThemeModel : NavigatorBarModel
{
///
///
///
///
public ThemeModel(ControllerBase controller) : base(controller)
{
Themes = DictHelper.RetrieveThemes();
}
///
/// 获得 系统配置的所有样式表
///
public IEnumerable Themes { get; }
}
}