using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Request.App.Topic
{
///
/// 话题分组查询用户
///
public class SearchTopicGroupUsersRequest
{
///
/// 分组ID
///
public int TopicGroupId { get; set; }
///
/// 搜索
///
public string Key { get; set; }
}
}