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