using System.Collections.Generic; namespace GxPress.Result.AppChannel { /// /// app导航 /// public class AppChannelResult { } /// /// 导航类别 /// 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; } } }