1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.Common.Page;
- namespace GxPress.Request.NoticeAnalyze
- {
- /// <summary>
- /// 文章点赞分页数据
- /// </summary>
- public class NoticePraisePageSearchRequest : PageParameter
- {
- /// <summary>
- /// 通知ID
- /// </summary>
- public int NoticeId { get; set; }
- }
- }
|