using System; using System.Collections.Generic; using System.Text; 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;} } }