using Newtonsoft.Json; namespace Vo.Admin { /// /// 详情 /// public class GetAppProjectPageStyleQueryVo { /// /// APP项目ID /// public int appId { get; set; } /// /// 背景色 /// public string backgroudColor { get; set; } /// /// 前景色 /// public string textColor { get; set; } /// /// 苹果状态栏 /// public string statusBarStyle { get; set; } /// /// 显示头部 /// public bool showTitle { get; set; } /// /// 页面滚动条 /// public bool showScrollBar { get; set; } /// /// 手势侧滑返回 /// public bool skidFlag { get; set; } /// /// 顶部标题位置 /// public string titlePosition { get; set; } } }