12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.NoticeComment
- {
- /// <summary>
- /// 删除通知评论接口
- /// </summary>
- public class NoticeCommentDeleteRequest
- {
- /// <summary>
- /// 通知ID
- /// </summary>
- public int NoticeId { get; set; }
- /// <summary>
- /// 评论ID
- /// </summary>
- public int NoticeCommentId { get; set; }
- }
- }
|