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