using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.App.TopicComment { /// /// 删除接口 /// public class TopicCommentDeleteRequest { /// /// 文章ID /// public int TopicId { get; set; } /// /// 评论ID /// public int CommentId { get; set; } } }