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