27 lines
666 B
C#
27 lines
666 B
C#
using Bootstrap.DataAccess;
|
|
using Bootstrap.Security;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Bootstrap.Admin.Models
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class ThemeModel : NavigatorBarModel
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="controller"></param>
|
|
public ThemeModel(ControllerBase controller) : base(controller)
|
|
{
|
|
Themes = DictHelper.RetrieveThemes();
|
|
}
|
|
/// <summary>
|
|
/// 获得 系统配置的所有样式表
|
|
/// </summary>
|
|
public IEnumerable<BootstrapDict> Themes { get; }
|
|
}
|
|
}
|