using System.Collections.Generic; namespace GxPress.Result.App.Middle { /// /// 查找文件夹文件夹 /// public class MiddleSearchFolderResult { /// /// 文件夹ID /// public int Id { get; set; } /// /// 文件夹名称 /// public string Name { get; set; } /// /// 是否禁用 /// public bool IsDisable { get; set; } /// /// 文件夹属性 /// public int RoleId { get; set; } /// /// 是否存在下级文件夹 /// public bool IsFolder { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 共享成员 /// /// public string EnjoyUser { get; set; } /// /// 文件数量 /// /// public int FileCount { get; set; } /// /// 是否系统默认 /// /// public bool IsSystemDefault { get; set; } /// /// 父级ID /// /// public int ParentId { get; set; } /// /// 是否草稿箱 /// /// public bool IsDraft { get; set; } } /// /// /// public class MiddleSearchFolderByParendIsResult { public List Item { get; set; } public int Id { get; set; } public string Name { get; set; } } }