using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Result.App.Note
{
///
/// 笔记评论显示
///
public class NoteCommentPageResult
{
///
/// 姓名
///
public string Name { get; set; }
///
/// 头像
///
public string AvatarUrl { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 时间
///
public DateTime? CreatedTime { get; set; }
///
/// 楼层
///
public string FloorCount { get; set; }
///
/// 点赞数量
///
public int LaudCount { get; set; }
///
/// 评论ID
///
public int Id { get; set; }
///
/// 笔记ID
///
public int NoteId { get; set; }
///
/// 被回复数据
///
public List NoteCommentReplyResults { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 是否点赞
///
public bool IsLaud { get; set; }
}
///
/// 被回复评论
///
public class NoteCommentReplyResult
{
///
/// 姓名
///
public string Name { get; set; }
///
/// 回复姓名
///
public string ReplyName { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 时间
///
public DateTime? CreatedTime { get; set; }
///
/// ID
///
public int Id { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 回复人ID
///
///
public int ReplyUserId { get; set; }
///
/// 是否回复
///
public bool IsUnderstand { get; set; }
}
}