using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Request.App.Topic
{
///
/// 添加话题分组成员
///
public class TopicGroupUserInRequest
{
///
/// 成员ID
///
public List UserIds { get; set; }
///
/// 话题分组ID
///
public int TopicGroupId { get; set; }
}
}