namespace GxPress.Result.Web
{
public class NoteResult
{
}
///
/// 查询用户摘要
///
public class NoteUserExtractResult
{
///
///
///
///
public int Id { get; set; }
///
/// 创建时间
///
///
public string CreatedDate { get; set; }
///
/// 标题
///
///
public string Title { get; set; }
///
///
///
///
public string Content { get; set; }
///
/// 用户ID
///
///
public string UserId { get; set; }
///
/// 阅读数量
///
///
public string ReadCount { get; set; }
///
/// 内容
///
///
public string HtmlContent { get; set; }
///
/// 媒体ID
///
///
public string MediaId { get; set; }
///
///
///
///
public string CatalogId { get; set; }
///
///
///
///
public string ChapterId { get; set; }
///
/// 点赞数量
///
///
public int PraiseCount { get; set; }
///
/// 是否点赞
///
///
public bool IsPraise { get; set; }
///
/// 评论数量
///
///
public int CommentCount { get; set; }
///
/// 转发数量
///
///
public int RetransmissionCount { get; set; }
///
/// 是否转发
///
///
public bool IsRetransmission { get; set; }
///
/// 姓名
///
///
public string Name { get; set; }
///
/// 头像
///
///
public string AvatarUrl { get; set; }
}
}