using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace PDF_Office.Model.PageEdit
{
    /// <summary>
    /// 插入自定义页面的 页面项
    /// </summary>
    public class CustomPageItem
    {
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }

        /// <summary>
        /// 图片路径
        /// </summary>
        public string FilePath { get; set; }
    }
}