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; }
///
/// 作者
///
///
public string Author { get; set; }
///
/// 是否存在草稿
///
///
public bool IsDraft { get; set; }
///
/// 草稿ID
///
///
public int DraftId { get; set; }
///
/// 草稿数量
///
///
public int DraftCount { get; set; }
///
/// 父级ID
///
///
public int ParentId { get; set; }
///
/// 是否成员
///
///
public bool IsUser { get; set; }
///
/// 是否系统默认
///
///
public bool IsSystemDefault { get; set; }
}
}