using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PDF_Master.Model.Dialog.HomePageToolsDialogs { public class HtmlModel { /// /// 文件路径 /// public string FilePath { get; set; } = ""; /// /// 页面尺寸 /// public Microsoft.Office.Interop.Word.WdPaperSize PageSize { get; set; } = Microsoft.Office.Interop.Word.WdPaperSize.wdPaperCustom; /// /// 边距 /// public double Margin { get; set; } = 0; } }