using System;
using System.Collections.Generic;
using ComPDFKit_Conversion.Converter;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PDF_Office.Model.Dialog.ConverterDialogs
{
public class ConverterDialogsModel
{
///
/// 文档地址;
///
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="";
}
}