using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.App.TopicAnalyze { /// /// 话题 点赞 评论点赞 转发 收藏 /// public class TopicAnalyzeRequest { /// /// 话题ID /// public int TopicId { get; set; } /// /// 评论ID /// public int TopicCommentId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 类型ID (1 文章点赞,2评论点赞,3收藏,4转发) /// public int TopicAnalyzeType { get; set; } } }