using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Result.NoticeFolder
{
///
/// 返回个人通知文件夹
///
public class NoticeFolderFindResult
{
///
/// 名称
///
public string FolderName { get; set; }
///
/// 通知文件夹自增ID
///
public int Id { get; set; }
///
/// 是否置顶
///
public bool IsTop { get; set; }
///
/// 文件数量
///
public int FileCount { get; set; }
}
}