using System;
using System.ComponentModel.DataAnnotations;
using Model.Base;
namespace Dto
{
///
/// 添加
///
public class AppBottomNavsAddDto
{
///
/// 标题
///
[Required(ErrorMessage = "标题不能为空")]
public string? title { get; set; }
///
/// 选中图标
///
public string? selectIcon { get; set; }
///
/// 未选中图标
///
public string? normalIcon { get; set; }
///
/// 选中文字颜色
///
public string? selectTextColor { get; set; }
///
/// 未选中文字颜色
///
public string? normalTextColor { get; set; }
///
/// 关联页面文件
///
public string? pageName { get; set; }
///
/// 空页面提示信息
///
public string? noPageHint { get; set; }
///
/// 背景色
///
public string? backgroudColor { get; set; }
///
/// 按钮样式
///
public string? style { get; set; }
///
/// 滚动图片
///
public string? scrollerAnimationImages { get; set; }
///
/// PAG文件
///
public string? pagPath { get; set; }
///
/// 是否显示标题
///
public bool showTitle { get; set; }
///
/// pag文件路径
///
public string? pagLocalPath { get; set; }
///
/// pag默认图标
///
public string? pagDefaultIcon { get; set; }
///
/// 图标尺寸
///
public int iconSize { get; set; }
///
/// 状态栏底色
///
public string? statusBarColor { get; set; }
///
/// 分类
///
[Required(ErrorMessage = "分类不能为空")]
public string? kind { get; set; }
///
/// 是否PAG
///
public bool pagFlag { get; set; }
}
}