using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.ArticleAnalyze { /// /// 点赞 评论点赞 转发 收藏 /// public class ArticleAnalyzeRequest { /// /// 文章ID /// public int ArticleId { get; set; } /// /// 评论ID /// public int CommentId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 类型ID (1 点赞,2评论点赞,3收藏,4转发) /// public int ArticleAnalyzeType { get; set; } /// /// 状态 10 会议纪要 0 文章 2 话题 3 通知 4 笔记 /// /// public int TypeValue { get; set; } } }