using ComPDFKit_Conversion.Converter; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PDF_Office.Model.Dialog.HomePageToolsDialogs.HomePageBatchProcessing.HomePageConverter { public class HomePageConverterDialogModel { public static List GetConverter = new List { "HomePageConverterWord","HomePageConverterExcel","HomePageConverterPPT","HomePageConverterRTF","HomePageConverterHTML" ,"HomePageConverterText","HomePageConverterCSV","HomePageConverterImg" }; /// /// 文档地址; /// public string InputPath = ""; /// /// 输出地址; /// public string OutputPath = ""; /// /// 进度; /// public OnProgress GetProgress = null; /// /// 页码 页码范围; /// public List PageIndexLists = new List { }; /// /// 页面信息 /// public string PageRange = "1,3-4,10"; /// /// 文档密码; /// public string Pawssword = ""; } }