using GxPress.Common.Page; namespace GxPress.Request.App.Group { /// /// 查询小组 /// public class GroupSearchRequest : PageParameter { /// /// 小组文件夹 /// public int GroupFolderId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 搜索 /// public string Key { get; set; } public bool IsContacts { get; set; } } }