using System;
namespace GxPress.Result.Reply
{
public class ReplyResult
{
///
/// 评论ID
///
///
public int Id { get; set; }
///
/// 话题或者笔记ID
///
///
public int SourceId { get; set; }
///
/// 评论内容
///
///
public string CommentContent { get; set; }
///
///
///
///
public int Pid { get; set; }
///
/// 类型
///
///
public int TypeValue { get; set; }
///
/// 话题或者笔记的标题
///
///
public string Title { get; set; }
///
/// 话题或者笔记的内容
///
///
public string Content { get; set; }
///
/// 回复人姓名
///
///
public string UserName { get; set; }
///
/// 回复人头像
///
///
public string AvatarUrl { get; set; }
///
/// 回复时间
///
///
public DateTime? CreatedDate { get; set; }
///
/// 回复人姓名
///
///
public int UserId { get; set; }
///
/// 是否话题
///
///
public bool IsTopic { get; set; }
///
/// 当前用户姓名
///
///
public string Name { get; set; }
///
/// 备注
///
///
public string Remark { get; set; }
///
/// 是否阅读
///
///
public bool IsRead { get; set; }
}
}