using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.Document;
///
/// 添加文件夹.
///
[SuppressSniffer]
public class DocumentCrInput
{
///
/// 文件夹名称.
///
public string? fullName { get; set; }
///
/// 文档父级.
///
public string? parentId { get; set; }
///
/// 文档分类.
///
public int? type { get; set; }
}