namespace GxPress.Request.Comment { /// /// 修改评论内容 /// public class CommentUpdateRequest { /// /// 评论的ID /// /// public int CommentId { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// 用户ID /// /// public int UserId { get; set; } /// /// 评分 /// /// public decimal Score { get; set; } public string JsonContent{get;set;} public string HtmlContent{get;set;} } }