12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.Common.Page;
- namespace GxPress.Request.App.Note
- {
- /// <summary>
- /// 笔记点赞分页数据
- /// </summary>
- public class NotePraisePageSearchRequest : PageParameter
- {
- /// <summary>
- /// 笔记ID
- /// </summary>
- public int NoteId { get; set; }
- }
- }
|