using System.Collections.Generic; namespace GxPress.Common.Page { /// /// 分页数据实体类 /// /// 数据对象的实体类型 public class PagedList { /// /// 当前页的数据 /// public IEnumerable Items { get; set; } /// /// 总数 /// public int Total { get; set; } /// /// 是否收藏 /// public bool IsCollect { get; set; } /// /// 转发数量 /// public int RetransmissionCount { get; set; } /// /// 权限 /// /// public int RoleId { get; set; } } }