using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.NoticeAnalyze { /// /// 文章 点赞 评论点赞 转发 收藏 /// public class NoticeAnalyzeRequest { /// /// 通知 /// public int NoticeId { get; set; } /// /// 评论ID /// public int NoticeCommentId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 类型ID (1 文章点赞,2评论点赞,3收藏,4转发) /// public int NoticeAnalyzeType { get; set; } } }