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