NoticeCommentDeleteRequest.cs 460 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GxPress.Request.NoticeComment
  5. {
  6. /// <summary>
  7. /// 删除通知评论接口
  8. /// </summary>
  9. public class NoticeCommentDeleteRequest
  10. {
  11. /// <summary>
  12. /// 通知ID
  13. /// </summary>
  14. public int NoticeId { get; set; }
  15. /// <summary>
  16. /// 评论ID
  17. /// </summary>
  18. public int NoticeCommentId { get; set; }
  19. }
  20. }