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; }
///
/// 是否过滤空文件夹
///
///
public bool IsFiltrationBlank { get; set; }
}
}