NoticePraisePageSearchRequest.cs 393 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using GxPress.Common.Page;
  5. namespace GxPress.Request.NoticeAnalyze
  6. {
  7. /// <summary>
  8. /// 文章点赞分页数据
  9. /// </summary>
  10. public class NoticePraisePageSearchRequest : PageParameter
  11. {
  12. /// <summary>
  13. /// 通知ID
  14. /// </summary>
  15. public int NoticeId { get; set; }
  16. }
  17. }