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

namespace PDF_Master.Model.PageEdit
{
    public class CustomInsertModel
    {
        /// <summary>
        /// 图片路径
        /// </summary>
        public string filepath { get; set; }

        /// <summary>
        /// 页面宽度
        /// </summary>
        public int width { get; set; }

        /// <summary>
        /// 页面高度
        /// </summary>
        public int height { get; set; }
    }
}