TopicCommentDeleteRequest.cs 444 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GxPress.Request.App.TopicComment
  5. {
  6. /// <summary>
  7. /// 删除接口
  8. /// </summary>
  9. public class TopicCommentDeleteRequest
  10. {
  11. /// <summary>
  12. /// 文章ID
  13. /// </summary>
  14. public int TopicId { get; set; }
  15. /// <summary>
  16. /// 评论ID
  17. /// </summary>
  18. public int CommentId { get; set; }
  19. }
  20. }