using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.Comment { /// /// 评论点赞 /// public class NoticeCommentInLaudRequest { /// /// 文章ID /// public int ArticleId { get; set; } /// /// 评论ID /// public int CommentId { get; set; } /// /// 用户ID /// public int UserId { get; set; } } }