using System; using System.Collections.Generic; using System.Text; using GxPress.Common.Page; namespace GxPress.Request.App.Topic { /// /// /// public class TopicDetailListRequest : PageParameter { /// /// 小组ID /// public List GroupIds { get; set; } /// /// 小组ID /// /// public int GroupId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 搜索 /// public string Key { get; set; } public TopicDetailListRequest() { GroupIds = new List(); } /// /// 是否草稿 /// /// public bool IsDraft { get; set; } } }