using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.NoticeComment { /// <summary> /// 通知评论点赞 /// </summary> public class NoticeCommentInLaudRequest { /// <summary> /// 通知ID /// </summary> public int NoticeId { get; set; } /// <summary> /// 评论ID /// </summary> public int CommentId { get; set; } /// <summary> /// 用户ID /// </summary> public int UserId { get; set; } } }