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.
 
 

36 lines
822 B

using System;
namespace Znyc.Cloudcar.Admin.Security.Dtos
{
/// <summary>
/// 用户自定义主题
/// </summary>
[Serializable]
public class UserThemeInputDto
{
/// <summary>
/// 主题颜色
/// </summary>
public string Theme { set; get; }
/// <summary>
/// 主题风格
/// </summary>
public string SideTheme { set; get; }
/// <summary>
/// 是否固定 Header
/// </summary>
public bool FixedHeader { set; get; }
/// <summary>
/// 是否开启 Tags-Views
/// </summary>
public bool TagsView { set; get; }
/// <summary>
/// 是否显示 Logo
/// </summary>
public bool SidebarLogo { set; get; }
}
}