using System;
using System.Collections.Generic;
using System.Text;
using GxPress.Common.Page;
namespace GxPress.Request.App.Topic
{
///
///
///
public class TopicDetailListRequest:PageParameter
{
///
/// 小组ID
///
public int GroupId { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 搜索
///
public string Key { get; set; }
}
}