using System;
using System.ComponentModel.DataAnnotations;
using Model.Base;
namespace Dto.Admin
{
///
/// 添加
///
public class AddAppProjectPageDto
{
///
/// 模板更新版本
///
public int moduleVersion { get; set; }
///
/// 是否读取网页标题
///
public bool webTitle { get; set; }
///
/// ID
///
public int id { get; set; }
///
/// 页面强制更新
///
public bool mustUpdate { get; set; }
///
/// 下级页面
///
public string? gotoPages { get; set; }
///
/// 版本ID
///
public int versionId { get; set; }
///
/// 右侧侧按钮
///
public string? rightBtn { get; set; }
///
/// 左侧按钮
///
public string? leftBtn { get; set; }
///
/// 手势侧滑返回
///
public bool skidFlag { get; set; }
///
/// 页面滚动条
///
public bool showScrollBar { get; set; }
///
/// 顶部标题
///
public string? title { get; set; }
///
/// 显示头部
///
public bool showTitle { get; set; }
///
/// 苹果状态栏
///
public string? statusBarStyle { get; set; }
///
/// 前景色
///
public string? textColor { get; set; }
///
/// 背景色
///
public string? backgroudColor { get; set; }
///
/// 页面路径
///
public string? modulePath { get; set; }
///
/// APP项目ID
///
public int appId { get; set; }
///
/// 顶部标题位置
///
public string? titlePosition { get; set; }
///
/// 页面文件
///
public string? moduleFile { get; set; }
}
}