using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.App.Note { /// /// 笔记 点赞 评论点赞 转发 收藏 /// public class NoteAnalyzeRequest { /// /// 话题ID /// public int NoteId { get; set; } /// /// 评论ID /// public int NoteCommentId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 类型ID (1 笔记点赞,2评论点赞,3收藏,4转发) /// public int NoteAnalyzeType { get; set; } } }