using Newtonsoft.Json; namespace Vo { /// /// 底部导航列表 /// public class AppAppBottomNavsVo { /// /// 标题 /// 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; } /// /// ID /// public int id { get; set; } /// /// 状态 /// public int status { get; set; } /// /// 是否PAG /// public bool pagFlag { get; set; } } }