using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Request.Comment
{
///
/// 文章评论
///
public class CommentInRequest
{
///
/// 文章ID
///
public int ArticleId { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 父级ID
///
public int Pid { get; set; }
///
/// 状态 10 会议纪要 0 文章 1 话题 2 通知 3 笔记
///
///
public int TypeValue{get;set;}
}
}