using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Request.NoticeComment
{
///
/// 通知评论
///
public class NoticeCommentInRequest
{
///
/// 通知ID
///
public int NoticeId { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 父级ID
///
public int Pid { get; set; }
}
}