using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Request.App.Topic
{
///
/// 话题详情
///
public class TopicDetailRequest
{
///
/// 话题ID
///
public int Id { get; set; }
///
/// 当前用户
///
public int UserId { get; set; }
}
}