using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Request.App.TopicComment
{
///
/// 话题评论添加
///
public class TopicCommentInRequest
{
///
/// 话题ID
///
public int TopicId { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 父级ID
///
public int Pid { get; set; }
}
}