using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.App.Topic { /// /// 添加话题分组 /// public class TopicGroupInRequest { /// /// 话题小组ID /// public int Id { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 名称 /// public string Name { get; set; } } /// /// 删除话题小组 /// public class TopicGroupDeRequest { /// /// 话题小组ID /// public List Ids { get; set; } } }