using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.App.Missive { /// /// 话题 点赞 评论点赞 转发 收藏 /// public class MissiveAnalyzeRequest { /// /// 话题ID /// public int MissiveId { get; set; } /// /// 评论ID /// public int MissiveCommentId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 类型ID (1 站内信点赞,2评论点赞,3收藏,4转发) /// public int MissiveAnalyzeType { get; set; } } }