NoticeAnalyzeRequest.cs 738 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GxPress.Request.NoticeAnalyze
  5. {
  6. /// <summary>
  7. /// 文章 点赞 评论点赞 转发 收藏
  8. /// </summary>
  9. public class NoticeAnalyzeRequest
  10. {
  11. /// <summary>
  12. /// 通知
  13. /// </summary>
  14. public int NoticeId { get; set; }
  15. /// <summary>
  16. /// 评论ID
  17. /// </summary>
  18. public int NoticeCommentId { get; set; }
  19. /// <summary>
  20. /// 用户ID
  21. /// </summary>
  22. public int UserId { get; set; }
  23. /// <summary>
  24. /// 类型ID (1 文章点赞,2评论点赞,3收藏,4转发)
  25. /// </summary>
  26. public int NoticeAnalyzeType { get; set; }
  27. }
  28. }