using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.App.Middle { /// /// 查找文件夹 /// public class MiddleSearchFolderRequest { /// /// 文件夹父级ID /// public int ParentId { get; set; } /// /// 文件夹类型 1 通知 2话题 3 收藏 4笔记 5 普通站内信 6匿名站内信 7小组 /// public int TypeId { get; set; } /// /// /// public int UserId { get; set; } /// /// 文件夹ID集合 /// public List FolderIds { get; set; } /// /// /// public MiddleSearchFolderRequest() { FolderIds = new List(); } /// /// 搜索 /// /// public string KeyWord { get; set; } } }