using System;
using System.Collections.Generic;
namespace GxPress.Result.AppChannel
{
///
/// 频道
///
public class AppChannelModelResult
{
///
/// 频道类型 公众号 视频 期刊杂志 图书
///
///
public GxPress.EnumConst.AppChannelConst Id { get; set; }
///
/// 频道名称
///
///
public string Name { get; set; }
///
/// 频道集合
///
///
public IEnumerable Items { get; set; }
}
///
/// app导航
///
public class AppChannelResult
{
///
/// id
///
///
public int Id { get; set; }
///
/// 标题图片
///
public string ImageUrls { get; set; }
///
/// 名称
///
///
public string Name { get; set; }
///
/// 类型 公众号 视频 期刊杂志 图书
///
///
public GxPress.EnumConst.AppChannelConst ChannelTypeValue { get; set; }
///
/// 排序
///
public int Sort { get; set; }
///
/// 1 普通 2 没有导航 3 sku
///
///
public int TypeValue { get; set; }
///
/// 媒体集合
///
///
public IEnumerable MediaIds { get; set; }
}
///
/// 导航类别
///
public class ChannelCategoryResult
{
///
/// id
///
///
public int Id { get; set; }
///
/// 名称
///
///
public string Name { get; set; }
///
/// 扩展名称
///
///
public string ExpandName { get; set; }
///
/// 父级ID
///
///
public int ParentId { get; set; }
///
/// 是否存在子集
///
///
public bool IsChildren { get; set; }
///
/// 子集
///
///
public IEnumerable Children { get; set; }
///
/// 媒体集合
///
///
public IEnumerable MediaIds { get; set; }
///
/// 是否分类
///
///
public bool IsCategory { get; set; }
}
///
/// 大咖讲座
///
public class MediaChannelCategoryResult
{
///
/// 评分
///
///
public decimal CommentScore { get; set; }
public bool IsCategory { get; set; }
///
/// 简介
///
public string Summary { get; set; }
///
///
///
///
public int Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 标题图片
///
public string ImageUrls { get; set; }
///
/// 出版社
///
///
public string Press { get; set; }
///
/// 作者
///
public string Author { get; set; }
///
/// 阅读量
///
///
public int ReadCount { get; set; }
///
/// 创建时间
///
///
public DateTime? CreatedDate { get; set; }
///
/// 时长
///
///
public string Duration { get; set; }
///
/// 收藏数量
///
///
public int CollectCount { get; set; }
///
/// 媒体类型
///
public int MediaType { get; set; }
///
/// 名称
///
///
public string Name { get; set; }
///
/// 扩展名称
///
///
public string ExpandName { get; set; }
}
///
/// 书籍SKU
///
public class SkuResult
{
public IEnumerable SortSift { get; set; }
public IEnumerable PressSift { get; set; }
}
///
/// 排序条件筛选
///
public class SortSift
{
///
///
///
///
public int Key { get; set; }
///
///
///
///
public string Value { get; set; }
}
///
/// 条件筛选出版社
///
public class PressSift
{
///
///
///
///
public int Key { get; set; }
///
///
///
///
public string Value { get; set; }
}
}