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; } } }