using System.Collections.Generic;
using GxPress.Result.Media;
namespace GxPress.Result.Navigation
{
///
/// 导航数据的显示
///
public class NavigationLabelMediaResult
{
///
/// id
///
///
public int Id { get; set; }
///
/// 标签名称
///
///
public string LabelName { get; set; }
///
/// 标签名称描述
///
///
public string LabelNameDescribe { get; set; }
///
/// 备注
///
///
public string Remark { get; set; }
///
/// 排序
///
///
public int Sort { get; set; }
///
/// 是否跳转
///
///
public bool IsSkip { get; set; }
///
/// 是否分页
///
///
public bool IsPage { get; set; }
///
/// 路径
///
///
public string ControllerUrl { get; set; }
///
/// 路径
///
///
public string ActionUrl { get; set; }
///
/// 资源类型
///
///
public int ResourceType { get; set; }
///
/// 样式类型
///
///
public string StyleType { get; set; }
///
/// 媒体
///
///
public List MediaResults { get; set; }
///
/// 特殊 130,示范课堂140,品牌专区1(150),品牌专区2(160)
///
///
public IEnumerable SpecialLabelResults { get; set; }
///
/// 是否特殊
///
///
public bool IsSpecial { get; set; }
}
///
/// 中间页面
///
public class MiddleLableResult
{
///
/// 导航栏ID
///
///
public string Name { get; set; }
///
/// 标签ID
///
///
public string LabelId { get; set; }
///
/// 排序
///
///
public int Sort { get; set; }
///
/// 是否禁用
///
///
public bool IsDisable { get; set; }
///
/// 是否开启搜索
///
///
public bool IsSearch { get; set; }
///
/// 是否开启轮播
///
///
public bool IsSlide { get; set; }
///
/// 1 APP 2 首页频道 3首页精选
///
///
public int TypeId { get; set; }
///
/// 导航数据的显示
///
///
public List NavigationLabelMediaResults { get; set; }
///
/// 获取轮播
///
///
public IEnumerable Sildes { get; set; }
///
/// 是否特殊
///
///
public bool IsSpecial { get; set; }
}
///
/// 导航数据的显示
///
public class NavigationResult
{
///
/// id
///
///
public int Id { get; set; }
///
/// 导航名称
///
///
public string Name { get; set; }
///
/// 是否禁用
///
///
public bool IsDisable { get; set; }
///
/// 父级ID
///
///
public int ParentId { get; set; }
///
/// 排序
///
///
public int Sort { get; set; }
///
/// 中间件页面ID
///
///
public int MiddleLableId { get; set; }
///
/// 是否可以操作
///
///
public bool Isoperate { get; set; }
///
/// 终端 1 pc 2 移动端
///
///
public int Terminal { get; set; }
///
/// 是否存在子集
///
///
public bool IsChildren { get; set; }
///
/// 子集
///
///
public List Children { get; set; }
///
/// 路径
///
///
public string ControllerUrl { get; set; }
///
/// 路径
///
///
public string ActionUrl { get; set; }
}
}